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.

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