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.

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