You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

408 lines
12KB

  1. /*
  2. * H263 decoder
  3. * Copyright (c) 2001 Gerard Lantau.
  4. *
  5. * This program is free software; you can redistribute it and/or modify
  6. * it under the terms of the GNU General Public License as published by
  7. * the Free Software Foundation; either version 2 of the License, or
  8. * (at your option) any later version.
  9. *
  10. * This program is distributed in the hope that it will be useful,
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. * GNU General Public License for more details.
  14. *
  15. * You should have received a copy of the GNU General Public License
  16. * along with this program; if not, write to the Free Software
  17. * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  18. */
  19. #include <stdlib.h>
  20. #include <stdio.h>
  21. #include <string.h>
  22. #include "dsputil.h"
  23. #include "avcodec.h"
  24. #include "mpegvideo.h"
  25. //#define DEBUG
  26. static int h263_decode_init(AVCodecContext *avctx)
  27. {
  28. MpegEncContext *s = avctx->priv_data;
  29. s->avctx = avctx;
  30. s->out_format = FMT_H263;
  31. s->width = avctx->width;
  32. s->height = avctx->height;
  33. /* select sub codec */
  34. switch(avctx->codec->id) {
  35. case CODEC_ID_H263:
  36. s->gob_number = 0;
  37. s->first_gob_line = 0;
  38. break;
  39. case CODEC_ID_MPEG4:
  40. s->time_increment_bits = 4; /* default value for broken headers */
  41. s->h263_pred = 1;
  42. s->has_b_frames = 1; //default, might be overriden in the vol header during header parsing
  43. break;
  44. case CODEC_ID_MSMPEG4V1:
  45. s->h263_msmpeg4 = 1;
  46. s->h263_pred = 1;
  47. s->msmpeg4_version=1;
  48. break;
  49. case CODEC_ID_MSMPEG4V2:
  50. s->h263_msmpeg4 = 1;
  51. s->h263_pred = 1;
  52. s->msmpeg4_version=2;
  53. break;
  54. case CODEC_ID_MSMPEG4V3:
  55. s->h263_msmpeg4 = 1;
  56. s->h263_pred = 1;
  57. s->msmpeg4_version=3;
  58. break;
  59. case CODEC_ID_WMV1:
  60. s->h263_msmpeg4 = 1;
  61. s->h263_pred = 1;
  62. s->msmpeg4_version=4;
  63. break;
  64. case CODEC_ID_H263I:
  65. s->h263_intel = 1;
  66. break;
  67. default:
  68. return -1;
  69. }
  70. s->codec_id= avctx->codec->id;
  71. avctx->mbskip_table= s->mbskip_table;
  72. /* for h263, we allocate the images after having read the header */
  73. if (avctx->codec->id != CODEC_ID_H263 && avctx->codec->id != CODEC_ID_MPEG4)
  74. if (MPV_common_init(s) < 0)
  75. return -1;
  76. if (s->h263_msmpeg4)
  77. msmpeg4_decode_init_vlc(s);
  78. else
  79. h263_decode_init_vlc(s);
  80. return 0;
  81. }
  82. static int h263_decode_end(AVCodecContext *avctx)
  83. {
  84. MpegEncContext *s = avctx->priv_data;
  85. MPV_common_end(s);
  86. return 0;
  87. }
  88. static int h263_decode_frame(AVCodecContext *avctx,
  89. void *data, int *data_size,
  90. UINT8 *buf, int buf_size)
  91. {
  92. MpegEncContext *s = avctx->priv_data;
  93. int ret;
  94. AVPicture *pict = data;
  95. #ifdef DEBUG
  96. printf("*****frame %d size=%d\n", avctx->frame_number, buf_size);
  97. printf("bytes=%x %x %x %x\n", buf[0], buf[1], buf[2], buf[3]);
  98. #endif
  99. s->hurry_up= avctx->hurry_up;
  100. /* no supplementary picture */
  101. if (buf_size == 0) {
  102. *data_size = 0;
  103. return 0;
  104. }
  105. if(s->bitstream_buffer_size){ //divx 5.01+ frame reorder
  106. init_get_bits(&s->gb, s->bitstream_buffer, s->bitstream_buffer_size);
  107. s->bitstream_buffer_size=0;
  108. }else
  109. init_get_bits(&s->gb, buf, buf_size);
  110. /* let's go :-) */
  111. if (s->h263_msmpeg4) {
  112. ret = msmpeg4_decode_picture_header(s);
  113. } else if (s->h263_pred) {
  114. ret = mpeg4_decode_picture_header(s);
  115. s->has_b_frames= !s->low_delay;
  116. } else if (s->h263_intel) {
  117. ret = intel_h263_decode_picture_header(s);
  118. } else {
  119. ret = h263_decode_picture_header(s);
  120. }
  121. /* After H263 & mpeg4 header decode we have the height, width,*/
  122. /* and other parameters. So then we could init the picture */
  123. /* FIXME: By the way H263 decoder is evolving it should have */
  124. /* an H263EncContext */
  125. if (!s->context_initialized) {
  126. avctx->width = s->width;
  127. avctx->height = s->height;
  128. avctx->aspect_ratio_info= s->aspect_ratio_info;
  129. if (MPV_common_init(s) < 0)
  130. return -1;
  131. } else if (s->width != avctx->width || s->height != avctx->height) {
  132. /* H.263 could change picture size any time */
  133. MPV_common_end(s);
  134. if (MPV_common_init(s) < 0)
  135. return -1;
  136. }
  137. if(ret==FRAME_SKIPED) return 0;
  138. if (ret < 0)
  139. return -1;
  140. /* skip b frames if we dont have reference frames */
  141. if(s->num_available_buffers<2 && s->pict_type==B_TYPE) return 0;
  142. /* skip b frames if we are in a hurry */
  143. if(s->hurry_up && s->pict_type==B_TYPE) return 0;
  144. MPV_frame_start(s);
  145. #ifdef DEBUG
  146. printf("qscale=%d\n", s->qscale);
  147. #endif
  148. /* decode each macroblock */
  149. s->block_wrap[0]=
  150. s->block_wrap[1]=
  151. s->block_wrap[2]=
  152. s->block_wrap[3]= s->mb_width*2 + 2;
  153. s->block_wrap[4]=
  154. s->block_wrap[5]= s->mb_width + 2;
  155. for(s->mb_y=0; s->mb_y < s->mb_height; s->mb_y++) {
  156. /* Check for GOB headers on H.263 */
  157. /* FIXME: In the future H.263+ will have intra prediction */
  158. /* and we are gonna need another way to detect MPEG4 */
  159. if (s->mb_y && !s->h263_pred) {
  160. s->first_gob_line = h263_decode_gob_header(s);
  161. }
  162. s->block_index[0]= s->block_wrap[0]*(s->mb_y*2 + 1) - 1;
  163. s->block_index[1]= s->block_wrap[0]*(s->mb_y*2 + 1);
  164. s->block_index[2]= s->block_wrap[0]*(s->mb_y*2 + 2) - 1;
  165. s->block_index[3]= s->block_wrap[0]*(s->mb_y*2 + 2);
  166. s->block_index[4]= s->block_wrap[4]*(s->mb_y + 1) + s->block_wrap[0]*(s->mb_height*2 + 2);
  167. s->block_index[5]= s->block_wrap[4]*(s->mb_y + 1 + s->mb_height + 2) + s->block_wrap[0]*(s->mb_height*2 + 2);
  168. for(s->mb_x=0; s->mb_x < s->mb_width; s->mb_x++) {
  169. s->block_index[0]+=2;
  170. s->block_index[1]+=2;
  171. s->block_index[2]+=2;
  172. s->block_index[3]+=2;
  173. s->block_index[4]++;
  174. s->block_index[5]++;
  175. #ifdef DEBUG
  176. printf("**mb x=%d y=%d\n", s->mb_x, s->mb_y);
  177. #endif
  178. //fprintf(stderr,"\nFrame: %d\tMB: %d",avctx->frame_number, (s->mb_y * s->mb_width) + s->mb_x);
  179. /* DCT & quantize */
  180. if (s->h263_pred && s->msmpeg4_version!=2) {
  181. h263_dc_scale(s);
  182. } else {
  183. /* default quantization values */
  184. s->y_dc_scale = 8;
  185. s->c_dc_scale = 8;
  186. }
  187. clear_blocks(s->block[0]);
  188. s->mv_dir = MV_DIR_FORWARD;
  189. s->mv_type = MV_TYPE_16X16;
  190. if (s->h263_msmpeg4) {
  191. if (msmpeg4_decode_mb(s, s->block) < 0) {
  192. fprintf(stderr,"\nError at MB: %d\n", (s->mb_y * s->mb_width) + s->mb_x);
  193. return -1;
  194. }
  195. } else {
  196. if (h263_decode_mb(s, s->block) < 0) {
  197. fprintf(stderr,"\nError at MB: %d\n", (s->mb_y * s->mb_width) + s->mb_x);
  198. return -1;
  199. }
  200. }
  201. MPV_decode_mb(s, s->block);
  202. }
  203. if ( avctx->draw_horiz_band
  204. && (s->num_available_buffers>=1 || (!s->has_b_frames)) ) {
  205. UINT8 *src_ptr[3];
  206. int y, h, offset;
  207. y = s->mb_y * 16;
  208. h = s->height - y;
  209. if (h > 16)
  210. h = 16;
  211. offset = y * s->linesize;
  212. if(s->pict_type==B_TYPE || (!s->has_b_frames)){
  213. src_ptr[0] = s->current_picture[0] + offset;
  214. src_ptr[1] = s->current_picture[1] + (offset >> 2);
  215. src_ptr[2] = s->current_picture[2] + (offset >> 2);
  216. } else {
  217. src_ptr[0] = s->last_picture[0] + offset;
  218. src_ptr[1] = s->last_picture[1] + (offset >> 2);
  219. src_ptr[2] = s->last_picture[2] + (offset >> 2);
  220. }
  221. avctx->draw_horiz_band(avctx, src_ptr, s->linesize,
  222. y, s->width, h);
  223. }
  224. }
  225. if (s->h263_msmpeg4 && s->msmpeg4_version<4 && s->pict_type==I_TYPE)
  226. if(msmpeg4_decode_ext_header(s, buf_size) < 0) return -1;
  227. /* divx 5.01+ bistream reorder stuff */
  228. if(s->codec_id==CODEC_ID_MPEG4 && s->bitstream_buffer_size==0){
  229. int current_pos= get_bits_count(&s->gb)/8;
  230. if( buf_size - current_pos > 5
  231. && buf_size - current_pos < BITSTREAM_BUFFER_SIZE){
  232. memcpy(s->bitstream_buffer, buf + current_pos, buf_size - current_pos);
  233. s->bitstream_buffer_size= buf_size - current_pos;
  234. }
  235. }
  236. MPV_frame_end(s);
  237. #if 0 //dirty show MVs, we should export the MV tables and write a filter to show them
  238. {
  239. int mb_y;
  240. s->has_b_frames=1;
  241. for(mb_y=0; mb_y<s->mb_height; mb_y++){
  242. int mb_x;
  243. int y= mb_y*16;
  244. for(mb_x=0; mb_x<s->mb_width; mb_x++){
  245. int x= mb_x*16;
  246. uint8_t *ptr= s->last_picture[0];
  247. int xy= 1 + mb_x*2 + (mb_y*2 + 1)*(s->mb_width*2 + 2);
  248. int mx= (s->motion_val[xy][0]>>1) + x;
  249. int my= (s->motion_val[xy][1]>>1) + y;
  250. int i;
  251. int max;
  252. if(mx<0) mx=0;
  253. if(my<0) my=0;
  254. if(mx>=s->width) mx= s->width -1;
  255. if(my>=s->height) my= s->height-1;
  256. max= ABS(mx-x);
  257. if(ABS(my-y) > max) max= ABS(my-y);
  258. /* the ugliest linedrawing routine ... */
  259. for(i=0; i<max; i++){
  260. int x1= x + (mx-x)*i/max;
  261. int y1= y + (my-y)*i/max;
  262. ptr[y1*s->linesize + x1]+=100;
  263. }
  264. s->mbskip_table[mb_x + mb_y*s->mb_width]=0;
  265. }
  266. }
  267. }
  268. #endif
  269. if(s->pict_type==B_TYPE || (!s->has_b_frames)){
  270. pict->data[0] = s->current_picture[0];
  271. pict->data[1] = s->current_picture[1];
  272. pict->data[2] = s->current_picture[2];
  273. } else {
  274. pict->data[0] = s->last_picture[0];
  275. pict->data[1] = s->last_picture[1];
  276. pict->data[2] = s->last_picture[2];
  277. }
  278. pict->linesize[0] = s->linesize;
  279. pict->linesize[1] = s->linesize / 2;
  280. pict->linesize[2] = s->linesize / 2;
  281. avctx->quality = s->qscale;
  282. /* Return the Picture timestamp as the frame number */
  283. /* we substract 1 because it is added on utils.c */
  284. avctx->frame_number = s->picture_number - 1;
  285. /* dont output the last pic after seeking
  286. note we allready added +1 for the current pix in MPV_frame_end(s) */
  287. if(s->num_available_buffers>=2 || (!s->has_b_frames))
  288. *data_size = sizeof(AVPicture);
  289. return buf_size;
  290. }
  291. AVCodec mpeg4_decoder = {
  292. "mpeg4",
  293. CODEC_TYPE_VIDEO,
  294. CODEC_ID_MPEG4,
  295. sizeof(MpegEncContext),
  296. h263_decode_init,
  297. NULL,
  298. h263_decode_end,
  299. h263_decode_frame,
  300. CODEC_CAP_DRAW_HORIZ_BAND,
  301. };
  302. AVCodec h263_decoder = {
  303. "h263",
  304. CODEC_TYPE_VIDEO,
  305. CODEC_ID_H263,
  306. sizeof(MpegEncContext),
  307. h263_decode_init,
  308. NULL,
  309. h263_decode_end,
  310. h263_decode_frame,
  311. CODEC_CAP_DRAW_HORIZ_BAND,
  312. };
  313. AVCodec msmpeg4v1_decoder = {
  314. "msmpeg4v1",
  315. CODEC_TYPE_VIDEO,
  316. CODEC_ID_MSMPEG4V1,
  317. sizeof(MpegEncContext),
  318. h263_decode_init,
  319. NULL,
  320. h263_decode_end,
  321. h263_decode_frame,
  322. CODEC_CAP_DRAW_HORIZ_BAND,
  323. };
  324. AVCodec msmpeg4v2_decoder = {
  325. "msmpeg4v2",
  326. CODEC_TYPE_VIDEO,
  327. CODEC_ID_MSMPEG4V2,
  328. sizeof(MpegEncContext),
  329. h263_decode_init,
  330. NULL,
  331. h263_decode_end,
  332. h263_decode_frame,
  333. CODEC_CAP_DRAW_HORIZ_BAND,
  334. };
  335. AVCodec msmpeg4v3_decoder = {
  336. "msmpeg4",
  337. CODEC_TYPE_VIDEO,
  338. CODEC_ID_MSMPEG4V3,
  339. sizeof(MpegEncContext),
  340. h263_decode_init,
  341. NULL,
  342. h263_decode_end,
  343. h263_decode_frame,
  344. CODEC_CAP_DRAW_HORIZ_BAND,
  345. };
  346. AVCodec wmv1_decoder = {
  347. "wmv1",
  348. CODEC_TYPE_VIDEO,
  349. CODEC_ID_WMV1,
  350. sizeof(MpegEncContext),
  351. h263_decode_init,
  352. NULL,
  353. h263_decode_end,
  354. h263_decode_frame,
  355. CODEC_CAP_DRAW_HORIZ_BAND,
  356. };
  357. AVCodec h263i_decoder = {
  358. "h263i",
  359. CODEC_TYPE_VIDEO,
  360. CODEC_ID_H263I,
  361. sizeof(MpegEncContext),
  362. h263_decode_init,
  363. NULL,
  364. h263_decode_end,
  365. h263_decode_frame,
  366. CODEC_CAP_DRAW_HORIZ_BAND,
  367. };