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.

770 lines
26KB

  1. /*
  2. * H.263 decoder
  3. * Copyright (c) 2001 Fabrice Bellard
  4. * Copyright (c) 2002-2004 Michael Niedermayer <michaelni@gmx.at>
  5. *
  6. * This file is part of FFmpeg.
  7. *
  8. * FFmpeg is free software; you can redistribute it and/or
  9. * modify it under the terms of the GNU Lesser General Public
  10. * License as published by the Free Software Foundation; either
  11. * version 2.1 of the License, or (at your option) any later version.
  12. *
  13. * FFmpeg is distributed in the hope that it will be useful,
  14. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  16. * Lesser General Public License for more details.
  17. *
  18. * You should have received a copy of the GNU Lesser General Public
  19. * License along with FFmpeg; if not, write to the Free Software
  20. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  21. */
  22. /**
  23. * @file
  24. * H.263 decoder.
  25. */
  26. #define UNCHECKED_BITSTREAM_READER 1
  27. #include "libavutil/cpu.h"
  28. #include "internal.h"
  29. #include "avcodec.h"
  30. #include "dsputil.h"
  31. #include "mpegvideo.h"
  32. #include "h263.h"
  33. #include "h263_parser.h"
  34. #include "mpeg4video_parser.h"
  35. #include "msmpeg4.h"
  36. #include "vdpau_internal.h"
  37. #include "thread.h"
  38. #include "flv.h"
  39. #include "mpeg4video.h"
  40. //#define DEBUG
  41. //#define PRINT_FRAME_TIME
  42. av_cold int ff_h263_decode_init(AVCodecContext *avctx)
  43. {
  44. MpegEncContext *s = avctx->priv_data;
  45. s->avctx = avctx;
  46. s->out_format = FMT_H263;
  47. s->width = avctx->coded_width;
  48. s->height = avctx->coded_height;
  49. s->workaround_bugs= avctx->workaround_bugs;
  50. // set defaults
  51. ff_MPV_decode_defaults(s);
  52. s->quant_precision=5;
  53. s->decode_mb= ff_h263_decode_mb;
  54. s->low_delay= 1;
  55. avctx->pix_fmt= avctx->get_format(avctx, avctx->codec->pix_fmts);
  56. s->unrestricted_mv= 1;
  57. /* select sub codec */
  58. switch(avctx->codec->id) {
  59. case CODEC_ID_H263:
  60. s->unrestricted_mv= 0;
  61. avctx->chroma_sample_location = AVCHROMA_LOC_CENTER;
  62. break;
  63. case CODEC_ID_MPEG4:
  64. break;
  65. case CODEC_ID_MSMPEG4V1:
  66. s->h263_pred = 1;
  67. s->msmpeg4_version=1;
  68. break;
  69. case CODEC_ID_MSMPEG4V2:
  70. s->h263_pred = 1;
  71. s->msmpeg4_version=2;
  72. break;
  73. case CODEC_ID_MSMPEG4V3:
  74. s->h263_pred = 1;
  75. s->msmpeg4_version=3;
  76. break;
  77. case CODEC_ID_WMV1:
  78. s->h263_pred = 1;
  79. s->msmpeg4_version=4;
  80. break;
  81. case CODEC_ID_WMV2:
  82. s->h263_pred = 1;
  83. s->msmpeg4_version=5;
  84. break;
  85. case CODEC_ID_VC1:
  86. case CODEC_ID_WMV3:
  87. case CODEC_ID_VC1IMAGE:
  88. case CODEC_ID_WMV3IMAGE:
  89. s->h263_pred = 1;
  90. s->msmpeg4_version=6;
  91. avctx->chroma_sample_location = AVCHROMA_LOC_LEFT;
  92. break;
  93. case CODEC_ID_H263I:
  94. break;
  95. case CODEC_ID_FLV1:
  96. s->h263_flv = 1;
  97. break;
  98. default:
  99. return -1;
  100. }
  101. s->codec_id= avctx->codec->id;
  102. avctx->hwaccel= ff_find_hwaccel(avctx->codec->id, avctx->pix_fmt);
  103. /* for h263, we allocate the images after having read the header */
  104. if (avctx->codec->id != CODEC_ID_H263 && avctx->codec->id != CODEC_ID_MPEG4)
  105. if (ff_MPV_common_init(s) < 0)
  106. return -1;
  107. ff_h263_decode_init_vlc(s);
  108. return 0;
  109. }
  110. av_cold int ff_h263_decode_end(AVCodecContext *avctx)
  111. {
  112. MpegEncContext *s = avctx->priv_data;
  113. ff_MPV_common_end(s);
  114. return 0;
  115. }
  116. /**
  117. * Return the number of bytes consumed for building the current frame.
  118. */
  119. static int get_consumed_bytes(MpegEncContext *s, int buf_size){
  120. int pos= (get_bits_count(&s->gb)+7)>>3;
  121. if(s->divx_packed || s->avctx->hwaccel){
  122. //we would have to scan through the whole buf to handle the weird reordering ...
  123. return buf_size;
  124. }else if(s->flags&CODEC_FLAG_TRUNCATED){
  125. pos -= s->parse_context.last_index;
  126. if(pos<0) pos=0; // padding is not really read so this might be -1
  127. return pos;
  128. }else{
  129. if(pos==0) pos=1; //avoid infinite loops (i doubt that is needed but ...)
  130. if(pos+10>buf_size) pos=buf_size; // oops ;)
  131. return pos;
  132. }
  133. }
  134. static int decode_slice(MpegEncContext *s){
  135. const int part_mask= s->partitioned_frame ? (ER_AC_END|ER_AC_ERROR) : 0x7F;
  136. const int mb_size = 16;
  137. s->last_resync_gb= s->gb;
  138. s->first_slice_line= 1;
  139. s->resync_mb_x= s->mb_x;
  140. s->resync_mb_y= s->mb_y;
  141. ff_set_qscale(s, s->qscale);
  142. if (s->avctx->hwaccel) {
  143. const uint8_t *start= s->gb.buffer + get_bits_count(&s->gb)/8;
  144. const uint8_t *end = ff_h263_find_resync_marker(start + 1, s->gb.buffer_end);
  145. skip_bits_long(&s->gb, 8*(end - start));
  146. return s->avctx->hwaccel->decode_slice(s->avctx, start, end - start);
  147. }
  148. if(s->partitioned_frame){
  149. const int qscale= s->qscale;
  150. if(CONFIG_MPEG4_DECODER && s->codec_id==CODEC_ID_MPEG4){
  151. if(ff_mpeg4_decode_partitions(s) < 0)
  152. return -1;
  153. }
  154. /* restore variables which were modified */
  155. s->first_slice_line=1;
  156. s->mb_x= s->resync_mb_x;
  157. s->mb_y= s->resync_mb_y;
  158. ff_set_qscale(s, qscale);
  159. }
  160. for(; s->mb_y < s->mb_height; s->mb_y++) {
  161. /* per-row end of slice checks */
  162. if(s->msmpeg4_version){
  163. if(s->resync_mb_y + s->slice_height == s->mb_y){
  164. ff_er_add_slice(s, s->resync_mb_x, s->resync_mb_y, s->mb_x-1, s->mb_y, ER_MB_END);
  165. return 0;
  166. }
  167. }
  168. if(s->msmpeg4_version==1){
  169. s->last_dc[0]=
  170. s->last_dc[1]=
  171. s->last_dc[2]= 128;
  172. }
  173. ff_init_block_index(s);
  174. for(; s->mb_x < s->mb_width; s->mb_x++) {
  175. int ret;
  176. ff_update_block_index(s);
  177. if(s->resync_mb_x == s->mb_x && s->resync_mb_y+1 == s->mb_y){
  178. s->first_slice_line=0;
  179. }
  180. /* DCT & quantize */
  181. s->mv_dir = MV_DIR_FORWARD;
  182. s->mv_type = MV_TYPE_16X16;
  183. // s->mb_skipped = 0;
  184. //printf("%d %d %06X\n", ret, get_bits_count(&s->gb), show_bits(&s->gb, 24));
  185. ret= s->decode_mb(s, s->block);
  186. if (s->pict_type!=AV_PICTURE_TYPE_B)
  187. ff_h263_update_motion_val(s);
  188. if(ret<0){
  189. const int xy= s->mb_x + s->mb_y*s->mb_stride;
  190. if(ret==SLICE_END){
  191. ff_MPV_decode_mb(s, s->block);
  192. if(s->loop_filter)
  193. ff_h263_loop_filter(s);
  194. //printf("%d %d %d %06X\n", s->mb_x, s->mb_y, s->gb.size*8 - get_bits_count(&s->gb), show_bits(&s->gb, 24));
  195. ff_er_add_slice(s, s->resync_mb_x, s->resync_mb_y, s->mb_x, s->mb_y, ER_MB_END&part_mask);
  196. s->padding_bug_score--;
  197. if(++s->mb_x >= s->mb_width){
  198. s->mb_x=0;
  199. ff_draw_horiz_band(s, s->mb_y*mb_size, mb_size);
  200. ff_MPV_report_decode_progress(s);
  201. s->mb_y++;
  202. }
  203. return 0;
  204. }else if(ret==SLICE_NOEND){
  205. av_log(s->avctx, AV_LOG_ERROR, "Slice mismatch at MB: %d\n", xy);
  206. ff_er_add_slice(s, s->resync_mb_x, s->resync_mb_y, s->mb_x+1, s->mb_y, ER_MB_END&part_mask);
  207. return -1;
  208. }
  209. av_log(s->avctx, AV_LOG_ERROR, "Error at MB: %d\n", xy);
  210. ff_er_add_slice(s, s->resync_mb_x, s->resync_mb_y, s->mb_x, s->mb_y, ER_MB_ERROR&part_mask);
  211. return -1;
  212. }
  213. ff_MPV_decode_mb(s, s->block);
  214. if(s->loop_filter)
  215. ff_h263_loop_filter(s);
  216. }
  217. ff_draw_horiz_band(s, s->mb_y*mb_size, mb_size);
  218. ff_MPV_report_decode_progress(s);
  219. s->mb_x= 0;
  220. }
  221. assert(s->mb_x==0 && s->mb_y==s->mb_height);
  222. if(s->codec_id==CODEC_ID_MPEG4
  223. && (s->workaround_bugs&FF_BUG_AUTODETECT)
  224. && get_bits_left(&s->gb) >= 48
  225. && show_bits(&s->gb, 24)==0x4010
  226. && !s->data_partitioning)
  227. s->padding_bug_score+=32;
  228. /* try to detect the padding bug */
  229. if( s->codec_id==CODEC_ID_MPEG4
  230. && (s->workaround_bugs&FF_BUG_AUTODETECT)
  231. && get_bits_left(&s->gb) >=0
  232. && get_bits_left(&s->gb) < 137
  233. // && !s->resync_marker
  234. && !s->data_partitioning){
  235. const int bits_count= get_bits_count(&s->gb);
  236. const int bits_left = s->gb.size_in_bits - bits_count;
  237. if(bits_left==0){
  238. s->padding_bug_score+=16;
  239. } else if(bits_left != 1){
  240. int v= show_bits(&s->gb, 8);
  241. v|= 0x7F >> (7-(bits_count&7));
  242. if(v==0x7F && bits_left<=8)
  243. s->padding_bug_score--;
  244. else if(v==0x7F && ((get_bits_count(&s->gb)+8)&8) && bits_left<=16)
  245. s->padding_bug_score+= 4;
  246. else
  247. s->padding_bug_score++;
  248. }
  249. }
  250. if(s->workaround_bugs&FF_BUG_AUTODETECT){
  251. if(s->padding_bug_score > -2 && !s->data_partitioning /*&& (s->divx_version>=0 || !s->resync_marker)*/)
  252. s->workaround_bugs |= FF_BUG_NO_PADDING;
  253. else
  254. s->workaround_bugs &= ~FF_BUG_NO_PADDING;
  255. }
  256. // handle formats which don't have unique end markers
  257. if(s->msmpeg4_version || (s->workaround_bugs&FF_BUG_NO_PADDING)){ //FIXME perhaps solve this more cleanly
  258. int left= get_bits_left(&s->gb);
  259. int max_extra=7;
  260. /* no markers in M$ crap */
  261. if(s->msmpeg4_version && s->pict_type==AV_PICTURE_TYPE_I)
  262. max_extra+= 17;
  263. /* buggy padding but the frame should still end approximately at the bitstream end */
  264. if((s->workaround_bugs&FF_BUG_NO_PADDING) && (s->err_recognition&(AV_EF_BUFFER|AV_EF_AGGRESSIVE)))
  265. max_extra+= 48;
  266. else if((s->workaround_bugs&FF_BUG_NO_PADDING))
  267. max_extra+= 256*256*256*64;
  268. if(left>max_extra){
  269. av_log(s->avctx, AV_LOG_ERROR, "discarding %d junk bits at end, next would be %X\n", left, show_bits(&s->gb, 24));
  270. }
  271. else if(left<0){
  272. av_log(s->avctx, AV_LOG_ERROR, "overreading %d bits\n", -left);
  273. }else
  274. ff_er_add_slice(s, s->resync_mb_x, s->resync_mb_y, s->mb_x-1, s->mb_y, ER_MB_END);
  275. return 0;
  276. }
  277. av_log(s->avctx, AV_LOG_ERROR, "slice end not reached but screenspace end (%d left %06X, score= %d)\n",
  278. get_bits_left(&s->gb),
  279. show_bits(&s->gb, 24), s->padding_bug_score);
  280. ff_er_add_slice(s, s->resync_mb_x, s->resync_mb_y, s->mb_x, s->mb_y, ER_MB_END&part_mask);
  281. return -1;
  282. }
  283. int ff_h263_decode_frame(AVCodecContext *avctx,
  284. void *data, int *data_size,
  285. AVPacket *avpkt)
  286. {
  287. const uint8_t *buf = avpkt->data;
  288. int buf_size = avpkt->size;
  289. MpegEncContext *s = avctx->priv_data;
  290. int ret;
  291. AVFrame *pict = data;
  292. #ifdef PRINT_FRAME_TIME
  293. uint64_t time= rdtsc();
  294. #endif
  295. s->flags= avctx->flags;
  296. s->flags2= avctx->flags2;
  297. /* no supplementary picture */
  298. if (buf_size == 0) {
  299. /* special case for last picture */
  300. if (s->low_delay==0 && s->next_picture_ptr) {
  301. *pict = s->next_picture_ptr->f;
  302. s->next_picture_ptr= NULL;
  303. *data_size = sizeof(AVFrame);
  304. }
  305. return 0;
  306. }
  307. if(s->flags&CODEC_FLAG_TRUNCATED){
  308. int next;
  309. if(CONFIG_MPEG4_DECODER && s->codec_id==CODEC_ID_MPEG4){
  310. next= ff_mpeg4_find_frame_end(&s->parse_context, buf, buf_size);
  311. }else if(CONFIG_H263_DECODER && s->codec_id==CODEC_ID_H263){
  312. next= ff_h263_find_frame_end(&s->parse_context, buf, buf_size);
  313. }else{
  314. av_log(s->avctx, AV_LOG_ERROR, "this codec does not support truncated bitstreams\n");
  315. return -1;
  316. }
  317. if( ff_combine_frame(&s->parse_context, next, (const uint8_t **)&buf, &buf_size) < 0 )
  318. return buf_size;
  319. }
  320. retry:
  321. if(s->divx_packed && s->bitstream_buffer_size){
  322. int i;
  323. for(i=0; i<buf_size-3; i++){
  324. if(buf[i]==0 && buf[i+1]==0 && buf[i+2]==1){
  325. if(buf[i+3]==0xB0){
  326. av_log(s->avctx, AV_LOG_WARNING, "Discarding excessive bitstream in packed xvid\n");
  327. s->bitstream_buffer_size=0;
  328. }
  329. break;
  330. }
  331. }
  332. }
  333. if(s->bitstream_buffer_size && (s->divx_packed || buf_size<20)){ //divx 5.01+/xvid frame reorder
  334. init_get_bits(&s->gb, s->bitstream_buffer, s->bitstream_buffer_size*8);
  335. }else
  336. init_get_bits(&s->gb, buf, buf_size*8);
  337. s->bitstream_buffer_size=0;
  338. if (!s->context_initialized) {
  339. if (ff_MPV_common_init(s) < 0) //we need the idct permutaton for reading a custom matrix
  340. return -1;
  341. }
  342. /* We need to set current_picture_ptr before reading the header,
  343. * otherwise we cannot store anyting in there */
  344. if (s->current_picture_ptr == NULL || s->current_picture_ptr->f.data[0]) {
  345. int i= ff_find_unused_picture(s, 0);
  346. if (i < 0)
  347. return i;
  348. s->current_picture_ptr= &s->picture[i];
  349. }
  350. /* let's go :-) */
  351. if (CONFIG_WMV2_DECODER && s->msmpeg4_version==5) {
  352. ret= ff_wmv2_decode_picture_header(s);
  353. } else if (CONFIG_MSMPEG4_DECODER && s->msmpeg4_version) {
  354. ret = ff_msmpeg4_decode_picture_header(s);
  355. } else if (CONFIG_MPEG4_DECODER && s->h263_pred) {
  356. if(s->avctx->extradata_size && s->picture_number==0){
  357. GetBitContext gb;
  358. init_get_bits(&gb, s->avctx->extradata, s->avctx->extradata_size*8);
  359. ret = ff_mpeg4_decode_picture_header(s, &gb);
  360. }
  361. ret = ff_mpeg4_decode_picture_header(s, &s->gb);
  362. } else if (CONFIG_H263I_DECODER && s->codec_id == CODEC_ID_H263I) {
  363. ret = ff_intel_h263_decode_picture_header(s);
  364. } else if (CONFIG_FLV_DECODER && s->h263_flv) {
  365. ret = ff_flv_decode_picture_header(s);
  366. } else {
  367. ret = ff_h263_decode_picture_header(s);
  368. }
  369. if (ret < 0 || ret==FRAME_SKIPPED) {
  370. if ( s->width != avctx->coded_width
  371. || s->height != avctx->coded_height) {
  372. av_log(s->avctx, AV_LOG_WARNING, "Reverting picture dimensions change due to header decoding failure\n");
  373. s->width = avctx->coded_width;
  374. s->height= avctx->coded_height;
  375. }
  376. }
  377. if(ret==FRAME_SKIPPED) return get_consumed_bytes(s, buf_size);
  378. /* skip if the header was thrashed */
  379. if (ret < 0){
  380. av_log(s->avctx, AV_LOG_ERROR, "header damaged\n");
  381. return -1;
  382. }
  383. avctx->has_b_frames= !s->low_delay;
  384. if(s->xvid_build==-1 && s->divx_version==-1 && s->lavc_build==-1){
  385. if(s->stream_codec_tag == AV_RL32("XVID") ||
  386. s->codec_tag == AV_RL32("XVID") || s->codec_tag == AV_RL32("XVIX") ||
  387. s->codec_tag == AV_RL32("RMP4") ||
  388. s->codec_tag == AV_RL32("SIPP")
  389. )
  390. s->xvid_build= 0;
  391. #if 0
  392. if(s->codec_tag == AV_RL32("DIVX") && s->vo_type==0 && s->vol_control_parameters==1
  393. && s->padding_bug_score > 0 && s->low_delay) // XVID with modified fourcc
  394. s->xvid_build= 0;
  395. #endif
  396. }
  397. if(s->xvid_build==-1 && s->divx_version==-1 && s->lavc_build==-1){
  398. if(s->codec_tag == AV_RL32("DIVX") && s->vo_type==0 && s->vol_control_parameters==0)
  399. s->divx_version= 400; //divx 4
  400. }
  401. if(s->xvid_build>=0 && s->divx_version>=0){
  402. s->divx_version=
  403. s->divx_build= -1;
  404. }
  405. if(s->workaround_bugs&FF_BUG_AUTODETECT){
  406. if(s->codec_tag == AV_RL32("XVIX"))
  407. s->workaround_bugs|= FF_BUG_XVID_ILACE;
  408. if(s->codec_tag == AV_RL32("UMP4")){
  409. s->workaround_bugs|= FF_BUG_UMP4;
  410. }
  411. if(s->divx_version>=500 && s->divx_build<1814){
  412. s->workaround_bugs|= FF_BUG_QPEL_CHROMA;
  413. }
  414. if(s->divx_version>502 && s->divx_build<1814){
  415. s->workaround_bugs|= FF_BUG_QPEL_CHROMA2;
  416. }
  417. if(s->xvid_build<=3U)
  418. s->padding_bug_score= 256*256*256*64;
  419. if(s->xvid_build<=1U)
  420. s->workaround_bugs|= FF_BUG_QPEL_CHROMA;
  421. if(s->xvid_build<=12U)
  422. s->workaround_bugs|= FF_BUG_EDGE;
  423. if(s->xvid_build<=32U)
  424. s->workaround_bugs|= FF_BUG_DC_CLIP;
  425. #define SET_QPEL_FUNC(postfix1, postfix2) \
  426. s->dsp.put_ ## postfix1 = ff_put_ ## postfix2;\
  427. s->dsp.put_no_rnd_ ## postfix1 = ff_put_no_rnd_ ## postfix2;\
  428. s->dsp.avg_ ## postfix1 = ff_avg_ ## postfix2;
  429. if(s->lavc_build<4653U)
  430. s->workaround_bugs|= FF_BUG_STD_QPEL;
  431. if(s->lavc_build<4655U)
  432. s->workaround_bugs|= FF_BUG_DIRECT_BLOCKSIZE;
  433. if(s->lavc_build<4670U){
  434. s->workaround_bugs|= FF_BUG_EDGE;
  435. }
  436. if(s->lavc_build<=4712U)
  437. s->workaround_bugs|= FF_BUG_DC_CLIP;
  438. if(s->divx_version>=0)
  439. s->workaround_bugs|= FF_BUG_DIRECT_BLOCKSIZE;
  440. //printf("padding_bug_score: %d\n", s->padding_bug_score);
  441. if(s->divx_version==501 && s->divx_build==20020416)
  442. s->padding_bug_score= 256*256*256*64;
  443. if(s->divx_version<500U){
  444. s->workaround_bugs|= FF_BUG_EDGE;
  445. }
  446. if(s->divx_version>=0)
  447. s->workaround_bugs|= FF_BUG_HPEL_CHROMA;
  448. #if 0
  449. if(s->divx_version==500)
  450. s->padding_bug_score= 256*256*256*64;
  451. /* very ugly XVID padding bug detection FIXME/XXX solve this differently
  452. * Let us hope this at least works.
  453. */
  454. if( s->resync_marker==0 && s->data_partitioning==0 && s->divx_version==-1
  455. && s->codec_id==CODEC_ID_MPEG4 && s->vo_type==0)
  456. s->workaround_bugs|= FF_BUG_NO_PADDING;
  457. if(s->lavc_build<4609U) //FIXME not sure about the version num but a 4609 file seems ok
  458. s->workaround_bugs|= FF_BUG_NO_PADDING;
  459. #endif
  460. }
  461. if(s->workaround_bugs& FF_BUG_STD_QPEL){
  462. SET_QPEL_FUNC(qpel_pixels_tab[0][ 5], qpel16_mc11_old_c)
  463. SET_QPEL_FUNC(qpel_pixels_tab[0][ 7], qpel16_mc31_old_c)
  464. SET_QPEL_FUNC(qpel_pixels_tab[0][ 9], qpel16_mc12_old_c)
  465. SET_QPEL_FUNC(qpel_pixels_tab[0][11], qpel16_mc32_old_c)
  466. SET_QPEL_FUNC(qpel_pixels_tab[0][13], qpel16_mc13_old_c)
  467. SET_QPEL_FUNC(qpel_pixels_tab[0][15], qpel16_mc33_old_c)
  468. SET_QPEL_FUNC(qpel_pixels_tab[1][ 5], qpel8_mc11_old_c)
  469. SET_QPEL_FUNC(qpel_pixels_tab[1][ 7], qpel8_mc31_old_c)
  470. SET_QPEL_FUNC(qpel_pixels_tab[1][ 9], qpel8_mc12_old_c)
  471. SET_QPEL_FUNC(qpel_pixels_tab[1][11], qpel8_mc32_old_c)
  472. SET_QPEL_FUNC(qpel_pixels_tab[1][13], qpel8_mc13_old_c)
  473. SET_QPEL_FUNC(qpel_pixels_tab[1][15], qpel8_mc33_old_c)
  474. }
  475. if(avctx->debug & FF_DEBUG_BUGS)
  476. av_log(s->avctx, AV_LOG_DEBUG, "bugs: %X lavc_build:%d xvid_build:%d divx_version:%d divx_build:%d %s\n",
  477. s->workaround_bugs, s->lavc_build, s->xvid_build, s->divx_version, s->divx_build,
  478. s->divx_packed ? "p" : "");
  479. #if HAVE_MMX
  480. if (s->codec_id == CODEC_ID_MPEG4 && s->xvid_build>=0 && avctx->idct_algo == FF_IDCT_AUTO && (av_get_cpu_flags() & AV_CPU_FLAG_MMX)) {
  481. avctx->idct_algo= FF_IDCT_XVIDMMX;
  482. ff_dct_common_init(s);
  483. }
  484. #endif
  485. /* After H263 & mpeg4 header decode we have the height, width,*/
  486. /* and other parameters. So then we could init the picture */
  487. /* FIXME: By the way H263 decoder is evolving it should have */
  488. /* an H263EncContext */
  489. if ( s->width != avctx->coded_width
  490. || s->height != avctx->coded_height) {
  491. /* H.263 could change picture size any time */
  492. ParseContext pc= s->parse_context; //FIXME move these demuxng hack to avformat
  493. if (HAVE_THREADS && (s->avctx->active_thread_type&FF_THREAD_FRAME)) {
  494. av_log_missing_feature(s->avctx, "Width/height/bit depth/chroma idc changing with threads is", 0);
  495. s->width = avctx->coded_width;
  496. s->height= avctx->coded_height;
  497. return -1; // width / height changed during parallelized decoding
  498. }
  499. s->parse_context.buffer=0;
  500. ff_MPV_common_end(s);
  501. s->parse_context= pc;
  502. }
  503. if (!s->context_initialized) {
  504. avcodec_set_dimensions(avctx, s->width, s->height);
  505. goto retry;
  506. }
  507. if((s->codec_id==CODEC_ID_H263 || s->codec_id==CODEC_ID_H263P || s->codec_id == CODEC_ID_H263I))
  508. s->gob_index = ff_h263_get_gob_height(s);
  509. // for skipping the frame
  510. s->current_picture.f.pict_type = s->pict_type;
  511. s->current_picture.f.key_frame = s->pict_type == AV_PICTURE_TYPE_I;
  512. /* skip B-frames if we don't have reference frames */
  513. if(s->last_picture_ptr==NULL && (s->pict_type==AV_PICTURE_TYPE_B || s->dropable)) return get_consumed_bytes(s, buf_size);
  514. if( (avctx->skip_frame >= AVDISCARD_NONREF && s->pict_type==AV_PICTURE_TYPE_B)
  515. || (avctx->skip_frame >= AVDISCARD_NONKEY && s->pict_type!=AV_PICTURE_TYPE_I)
  516. || avctx->skip_frame >= AVDISCARD_ALL)
  517. return get_consumed_bytes(s, buf_size);
  518. if(s->next_p_frame_damaged){
  519. if(s->pict_type==AV_PICTURE_TYPE_B)
  520. return get_consumed_bytes(s, buf_size);
  521. else
  522. s->next_p_frame_damaged=0;
  523. }
  524. if((s->avctx->flags2 & CODEC_FLAG2_FAST) && s->pict_type==AV_PICTURE_TYPE_B){
  525. s->me.qpel_put= s->dsp.put_2tap_qpel_pixels_tab;
  526. s->me.qpel_avg= s->dsp.avg_2tap_qpel_pixels_tab;
  527. }else if((!s->no_rounding) || s->pict_type==AV_PICTURE_TYPE_B){
  528. s->me.qpel_put= s->dsp.put_qpel_pixels_tab;
  529. s->me.qpel_avg= s->dsp.avg_qpel_pixels_tab;
  530. }else{
  531. s->me.qpel_put= s->dsp.put_no_rnd_qpel_pixels_tab;
  532. s->me.qpel_avg= s->dsp.avg_qpel_pixels_tab;
  533. }
  534. if(ff_MPV_frame_start(s, avctx) < 0)
  535. return -1;
  536. if (!s->divx_packed) ff_thread_finish_setup(avctx);
  537. if (CONFIG_MPEG4_VDPAU_DECODER && (s->avctx->codec->capabilities & CODEC_CAP_HWACCEL_VDPAU)) {
  538. ff_vdpau_mpeg4_decode_picture(s, s->gb.buffer, s->gb.buffer_end - s->gb.buffer);
  539. goto frame_end;
  540. }
  541. if (avctx->hwaccel) {
  542. if (avctx->hwaccel->start_frame(avctx, s->gb.buffer, s->gb.buffer_end - s->gb.buffer) < 0)
  543. return -1;
  544. }
  545. ff_er_frame_start(s);
  546. //the second part of the wmv2 header contains the MB skip bits which are stored in current_picture->mb_type
  547. //which is not available before ff_MPV_frame_start()
  548. if (CONFIG_WMV2_DECODER && s->msmpeg4_version==5){
  549. ret = ff_wmv2_decode_secondary_picture_header(s);
  550. if(ret<0) return ret;
  551. if(ret==1) goto intrax8_decoded;
  552. }
  553. /* decode each macroblock */
  554. s->mb_x=0;
  555. s->mb_y=0;
  556. ret = decode_slice(s);
  557. while(s->mb_y<s->mb_height){
  558. if(s->msmpeg4_version){
  559. if(s->slice_height==0 || s->mb_x!=0 || (s->mb_y%s->slice_height)!=0 || get_bits_left(&s->gb)<0)
  560. break;
  561. }else{
  562. int prev_x=s->mb_x, prev_y=s->mb_y;
  563. if(ff_h263_resync(s)<0)
  564. break;
  565. if (prev_y * s->mb_width + prev_x < s->mb_y * s->mb_width + s->mb_x)
  566. s->error_occurred = 1;
  567. }
  568. if(s->msmpeg4_version<4 && s->h263_pred)
  569. ff_mpeg4_clean_buffers(s);
  570. if (decode_slice(s) < 0) ret = AVERROR_INVALIDDATA;
  571. }
  572. if (s->msmpeg4_version && s->msmpeg4_version<4 && s->pict_type==AV_PICTURE_TYPE_I)
  573. if(!CONFIG_MSMPEG4_DECODER || ff_msmpeg4_decode_ext_header(s, buf_size) < 0){
  574. s->error_status_table[s->mb_num-1]= ER_MB_ERROR;
  575. }
  576. assert(s->bitstream_buffer_size==0);
  577. frame_end:
  578. /* divx 5.01+ bistream reorder stuff */
  579. if(s->codec_id==CODEC_ID_MPEG4 && s->divx_packed){
  580. int current_pos= s->gb.buffer == s->bitstream_buffer ? 0 : (get_bits_count(&s->gb)>>3);
  581. int startcode_found=0;
  582. if(buf_size - current_pos > 7){
  583. int i;
  584. for(i=current_pos; i<buf_size-4; i++){
  585. if(buf[i]==0 && buf[i+1]==0 && buf[i+2]==1 && buf[i+3]==0xB6){
  586. startcode_found=!(buf[i+4]&0x40);
  587. break;
  588. }
  589. }
  590. }
  591. if(startcode_found){
  592. av_fast_malloc(
  593. &s->bitstream_buffer,
  594. &s->allocated_bitstream_buffer_size,
  595. buf_size - current_pos + FF_INPUT_BUFFER_PADDING_SIZE);
  596. if (!s->bitstream_buffer)
  597. return AVERROR(ENOMEM);
  598. memcpy(s->bitstream_buffer, buf + current_pos, buf_size - current_pos);
  599. s->bitstream_buffer_size= buf_size - current_pos;
  600. }
  601. }
  602. intrax8_decoded:
  603. ff_er_frame_end(s);
  604. if (avctx->hwaccel) {
  605. if (avctx->hwaccel->end_frame(avctx) < 0)
  606. return -1;
  607. }
  608. ff_MPV_frame_end(s);
  609. assert(s->current_picture.f.pict_type == s->current_picture_ptr->f.pict_type);
  610. assert(s->current_picture.f.pict_type == s->pict_type);
  611. if (s->pict_type == AV_PICTURE_TYPE_B || s->low_delay) {
  612. *pict = s->current_picture_ptr->f;
  613. } else if (s->last_picture_ptr != NULL) {
  614. *pict = s->last_picture_ptr->f;
  615. }
  616. if(s->last_picture_ptr || s->low_delay){
  617. *data_size = sizeof(AVFrame);
  618. ff_print_debug_info(s, pict);
  619. }
  620. #ifdef PRINT_FRAME_TIME
  621. av_log(avctx, AV_LOG_DEBUG, "%"PRId64"\n", rdtsc()-time);
  622. #endif
  623. return (ret && (avctx->err_recognition & AV_EF_EXPLODE))?ret:get_consumed_bytes(s, buf_size);
  624. }
  625. AVCodec ff_h263_decoder = {
  626. .name = "h263",
  627. .type = AVMEDIA_TYPE_VIDEO,
  628. .id = CODEC_ID_H263,
  629. .priv_data_size = sizeof(MpegEncContext),
  630. .init = ff_h263_decode_init,
  631. .close = ff_h263_decode_end,
  632. .decode = ff_h263_decode_frame,
  633. .capabilities = CODEC_CAP_DRAW_HORIZ_BAND | CODEC_CAP_DR1 |
  634. CODEC_CAP_TRUNCATED | CODEC_CAP_DELAY,
  635. .flush = ff_mpeg_flush,
  636. .long_name = NULL_IF_CONFIG_SMALL("H.263 / H.263-1996, H.263+ / H.263-1998 / H.263 version 2"),
  637. .pix_fmts = ff_hwaccel_pixfmt_list_420,
  638. };