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.

744 lines
24KB

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