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.

757 lines
25KB

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