h263dec.c 25 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751
  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 "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. case CODEC_ID_VC1IMAGE:
  87. case CODEC_ID_WMV3IMAGE:
  88. s->h263_pred = 1;
  89. s->msmpeg4_version=6;
  90. avctx->chroma_sample_location = AVCHROMA_LOC_LEFT;
  91. break;
  92. case CODEC_ID_H263I:
  93. break;
  94. case CODEC_ID_FLV1:
  95. s->h263_flv = 1;
  96. break;
  97. default:
  98. return -1;
  99. }
  100. s->codec_id= avctx->codec->id;
  101. avctx->hwaccel= ff_find_hwaccel(avctx->codec->id, avctx->pix_fmt);
  102. /* for h263, we allocate the images after having read the header */
  103. if (avctx->codec->id != CODEC_ID_H263 && avctx->codec->id != CODEC_ID_MPEG4)
  104. if (MPV_common_init(s) < 0)
  105. return -1;
  106. h263_decode_init_vlc(s);
  107. return 0;
  108. }
  109. av_cold int ff_h263_decode_end(AVCodecContext *avctx)
  110. {
  111. MpegEncContext *s = avctx->priv_data;
  112. MPV_common_end(s);
  113. return 0;
  114. }
  115. /**
  116. * Return the number of bytes consumed for building the current frame.
  117. */
  118. static int get_consumed_bytes(MpegEncContext *s, int buf_size){
  119. int pos= (get_bits_count(&s->gb)+7)>>3;
  120. if(s->divx_packed || s->avctx->hwaccel){
  121. //we would have to scan through the whole buf to handle the weird reordering ...
  122. return buf_size;
  123. }else if(s->flags&CODEC_FLAG_TRUNCATED){
  124. pos -= s->parse_context.last_index;
  125. if(pos<0) pos=0; // padding is not really read so this might be -1
  126. return pos;
  127. }else{
  128. if(pos==0) pos=1; //avoid infinite loops (i doubt that is needed but ...)
  129. if(pos+10>buf_size) pos=buf_size; // oops ;)
  130. return pos;
  131. }
  132. }
  133. static int decode_slice(MpegEncContext *s){
  134. const int part_mask= s->partitioned_frame ? (ER_AC_END|ER_AC_ERROR) : 0x7F;
  135. const int mb_size= 16>>s->avctx->lowres;
  136. s->last_resync_gb= s->gb;
  137. s->first_slice_line= 1;
  138. s->resync_mb_x= s->mb_x;
  139. s->resync_mb_y= s->mb_y;
  140. ff_set_qscale(s, s->qscale);
  141. if (s->avctx->hwaccel) {
  142. const uint8_t *start= s->gb.buffer + get_bits_count(&s->gb)/8;
  143. const uint8_t *end = ff_h263_find_resync_marker(start + 1, s->gb.buffer_end);
  144. skip_bits_long(&s->gb, 8*(end - start));
  145. return s->avctx->hwaccel->decode_slice(s->avctx, start, end - start);
  146. }
  147. if(s->partitioned_frame){
  148. const int qscale= s->qscale;
  149. if(CONFIG_MPEG4_DECODER && s->codec_id==CODEC_ID_MPEG4){
  150. if(ff_mpeg4_decode_partitions(s) < 0)
  151. return -1;
  152. }
  153. /* restore variables which were modified */
  154. s->first_slice_line=1;
  155. s->mb_x= s->resync_mb_x;
  156. s->mb_y= s->resync_mb_y;
  157. ff_set_qscale(s, qscale);
  158. }
  159. for(; s->mb_y < s->mb_height; s->mb_y++) {
  160. /* per-row end of slice checks */
  161. if(s->msmpeg4_version){
  162. if(s->resync_mb_y + s->slice_height == s->mb_y){
  163. ff_er_add_slice(s, s->resync_mb_x, s->resync_mb_y, s->mb_x-1, s->mb_y, ER_MB_END);
  164. return 0;
  165. }
  166. }
  167. if(s->msmpeg4_version==1){
  168. s->last_dc[0]=
  169. s->last_dc[1]=
  170. s->last_dc[2]= 128;
  171. }
  172. ff_init_block_index(s);
  173. for(; s->mb_x < s->mb_width; s->mb_x++) {
  174. int ret;
  175. ff_update_block_index(s);
  176. if(s->resync_mb_x == s->mb_x && s->resync_mb_y+1 == s->mb_y){
  177. s->first_slice_line=0;
  178. }
  179. /* DCT & quantize */
  180. s->mv_dir = MV_DIR_FORWARD;
  181. s->mv_type = MV_TYPE_16X16;
  182. // s->mb_skipped = 0;
  183. //printf("%d %d %06X\n", ret, get_bits_count(&s->gb), show_bits(&s->gb, 24));
  184. ret= s->decode_mb(s, s->block);
  185. if (s->pict_type!=AV_PICTURE_TYPE_B)
  186. ff_h263_update_motion_val(s);
  187. if(ret<0){
  188. const int xy= s->mb_x + s->mb_y*s->mb_stride;
  189. if(ret==SLICE_END){
  190. MPV_decode_mb(s, s->block);
  191. if(s->loop_filter)
  192. ff_h263_loop_filter(s);
  193. //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));
  194. ff_er_add_slice(s, s->resync_mb_x, s->resync_mb_y, s->mb_x, s->mb_y, ER_MB_END&part_mask);
  195. s->padding_bug_score--;
  196. if(++s->mb_x >= s->mb_width){
  197. s->mb_x=0;
  198. ff_draw_horiz_band(s, s->mb_y*mb_size, mb_size);
  199. MPV_report_decode_progress(s);
  200. s->mb_y++;
  201. }
  202. return 0;
  203. }else if(ret==SLICE_NOEND){
  204. av_log(s->avctx, AV_LOG_ERROR, "Slice mismatch at MB: %d\n", xy);
  205. 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);
  206. return -1;
  207. }
  208. av_log(s->avctx, AV_LOG_ERROR, "Error at MB: %d\n", xy);
  209. ff_er_add_slice(s, s->resync_mb_x, s->resync_mb_y, s->mb_x, s->mb_y, ER_MB_ERROR&part_mask);
  210. return -1;
  211. }
  212. MPV_decode_mb(s, s->block);
  213. if(s->loop_filter)
  214. ff_h263_loop_filter(s);
  215. }
  216. ff_draw_horiz_band(s, s->mb_y*mb_size, mb_size);
  217. MPV_report_decode_progress(s);
  218. s->mb_x= 0;
  219. }
  220. assert(s->mb_x==0 && s->mb_y==s->mb_height);
  221. if(s->codec_id==CODEC_ID_MPEG4
  222. && (s->workaround_bugs&FF_BUG_AUTODETECT)
  223. && get_bits_left(&s->gb) >= 48
  224. && show_bits(&s->gb, 24)==0x4010
  225. && !s->data_partitioning)
  226. s->padding_bug_score+=32;
  227. /* try to detect the padding bug */
  228. if( s->codec_id==CODEC_ID_MPEG4
  229. && (s->workaround_bugs&FF_BUG_AUTODETECT)
  230. && get_bits_left(&s->gb) >=0
  231. && get_bits_left(&s->gb) < 137
  232. // && !s->resync_marker
  233. && !s->data_partitioning){
  234. const int bits_count= get_bits_count(&s->gb);
  235. const int bits_left = s->gb.size_in_bits - bits_count;
  236. if(bits_left==0){
  237. s->padding_bug_score+=16;
  238. } else if(bits_left != 1){
  239. int v= show_bits(&s->gb, 8);
  240. v|= 0x7F >> (7-(bits_count&7));
  241. if(v==0x7F && bits_left<=8)
  242. s->padding_bug_score--;
  243. else if(v==0x7F && ((get_bits_count(&s->gb)+8)&8) && bits_left<=16)
  244. s->padding_bug_score+= 4;
  245. else
  246. s->padding_bug_score++;
  247. }
  248. }
  249. if(s->workaround_bugs&FF_BUG_AUTODETECT){
  250. if(s->padding_bug_score > -2 && !s->data_partitioning /*&& (s->divx_version>=0 || !s->resync_marker)*/)
  251. s->workaround_bugs |= FF_BUG_NO_PADDING;
  252. else
  253. s->workaround_bugs &= ~FF_BUG_NO_PADDING;
  254. }
  255. // handle formats which don't have unique end markers
  256. if(s->msmpeg4_version || (s->workaround_bugs&FF_BUG_NO_PADDING)){ //FIXME perhaps solve this more cleanly
  257. int left= get_bits_left(&s->gb);
  258. int max_extra=7;
  259. /* no markers in M$ crap */
  260. if(s->msmpeg4_version && s->pict_type==AV_PICTURE_TYPE_I)
  261. max_extra+= 17;
  262. /* buggy padding but the frame should still end approximately at the bitstream end */
  263. if((s->workaround_bugs&FF_BUG_NO_PADDING) && (s->err_recognition&(AV_EF_BUFFER|AV_EF_AGGRESSIVE)))
  264. max_extra+= 48;
  265. else if((s->workaround_bugs&FF_BUG_NO_PADDING))
  266. max_extra+= 256*256*256*64;
  267. if(left>max_extra){
  268. av_log(s->avctx, AV_LOG_ERROR, "discarding %d junk bits at end, next would be %X\n", left, show_bits(&s->gb, 24));
  269. }
  270. else if(left<0){
  271. av_log(s->avctx, AV_LOG_ERROR, "overreading %d bits\n", -left);
  272. }else
  273. ff_er_add_slice(s, s->resync_mb_x, s->resync_mb_y, s->mb_x-1, s->mb_y, ER_MB_END);
  274. return 0;
  275. }
  276. av_log(s->avctx, AV_LOG_ERROR, "slice end not reached but screenspace end (%d left %06X, score= %d)\n",
  277. get_bits_left(&s->gb),
  278. show_bits(&s->gb, 24), s->padding_bug_score);
  279. ff_er_add_slice(s, s->resync_mb_x, s->resync_mb_y, s->mb_x, s->mb_y, ER_MB_END&part_mask);
  280. return -1;
  281. }
  282. int ff_h263_decode_frame(AVCodecContext *avctx,
  283. void *data, int *data_size,
  284. AVPacket *avpkt)
  285. {
  286. const uint8_t *buf = avpkt->data;
  287. int buf_size = avpkt->size;
  288. MpegEncContext *s = avctx->priv_data;
  289. int ret;
  290. AVFrame *pict = data;
  291. #ifdef PRINT_FRAME_TIME
  292. uint64_t time= rdtsc();
  293. #endif
  294. s->flags= avctx->flags;
  295. s->flags2= avctx->flags2;
  296. /* no supplementary picture */
  297. if (buf_size == 0) {
  298. /* special case for last picture */
  299. if (s->low_delay==0 && s->next_picture_ptr) {
  300. *pict= *(AVFrame*)s->next_picture_ptr;
  301. s->next_picture_ptr= NULL;
  302. *data_size = sizeof(AVFrame);
  303. }
  304. return 0;
  305. }
  306. if(s->flags&CODEC_FLAG_TRUNCATED){
  307. int next;
  308. if(CONFIG_MPEG4_DECODER && s->codec_id==CODEC_ID_MPEG4){
  309. next= ff_mpeg4_find_frame_end(&s->parse_context, buf, buf_size);
  310. }else if(CONFIG_H263_DECODER && s->codec_id==CODEC_ID_H263){
  311. next= ff_h263_find_frame_end(&s->parse_context, buf, buf_size);
  312. }else{
  313. av_log(s->avctx, AV_LOG_ERROR, "this codec does not support truncated bitstreams\n");
  314. return -1;
  315. }
  316. if( ff_combine_frame(&s->parse_context, next, (const uint8_t **)&buf, &buf_size) < 0 )
  317. return buf_size;
  318. }
  319. retry:
  320. if(s->divx_packed && s->bitstream_buffer_size){
  321. int i;
  322. for(i=0; i<buf_size-3; i++){
  323. if(buf[i]==0 && buf[i+1]==0 && buf[i+2]==1){
  324. if(buf[i+3]==0xB0){
  325. av_log(s->avctx, AV_LOG_WARNING, "Discarding excessive bitstream in packed xvid\n");
  326. s->bitstream_buffer_size=0;
  327. }
  328. break;
  329. }
  330. }
  331. }
  332. if(s->bitstream_buffer_size && (s->divx_packed || buf_size<20)){ //divx 5.01+/xvid frame reorder
  333. init_get_bits(&s->gb, s->bitstream_buffer, s->bitstream_buffer_size*8);
  334. }else
  335. init_get_bits(&s->gb, buf, buf_size*8);
  336. s->bitstream_buffer_size=0;
  337. if (!s->context_initialized) {
  338. if (MPV_common_init(s) < 0) //we need the idct permutaton for reading a custom matrix
  339. return -1;
  340. }
  341. /* We need to set current_picture_ptr before reading the header,
  342. * otherwise we cannot store anyting in there */
  343. if (s->current_picture_ptr == NULL || s->current_picture_ptr->f.data[0]) {
  344. int i= ff_find_unused_picture(s, 0);
  345. s->current_picture_ptr= &s->picture[i];
  346. }
  347. /* let's go :-) */
  348. if (CONFIG_WMV2_DECODER && s->msmpeg4_version==5) {
  349. ret= ff_wmv2_decode_picture_header(s);
  350. } else if (CONFIG_MSMPEG4_DECODER && s->msmpeg4_version) {
  351. ret = msmpeg4_decode_picture_header(s);
  352. } else if (CONFIG_MPEG4_DECODER && s->h263_pred) {
  353. if(s->avctx->extradata_size && s->picture_number==0){
  354. GetBitContext gb;
  355. init_get_bits(&gb, s->avctx->extradata, s->avctx->extradata_size*8);
  356. ret = ff_mpeg4_decode_picture_header(s, &gb);
  357. }
  358. ret = ff_mpeg4_decode_picture_header(s, &s->gb);
  359. } else if (CONFIG_H263I_DECODER && s->codec_id == CODEC_ID_H263I) {
  360. ret = ff_intel_h263_decode_picture_header(s);
  361. } else if (CONFIG_FLV_DECODER && s->h263_flv) {
  362. ret = ff_flv_decode_picture_header(s);
  363. } else {
  364. ret = h263_decode_picture_header(s);
  365. }
  366. if(ret==FRAME_SKIPPED) return get_consumed_bytes(s, buf_size);
  367. /* skip if the header was thrashed */
  368. if (ret < 0){
  369. av_log(s->avctx, AV_LOG_ERROR, "header damaged\n");
  370. return -1;
  371. }
  372. avctx->has_b_frames= !s->low_delay;
  373. if(s->xvid_build==-1 && s->divx_version==-1 && s->lavc_build==-1){
  374. if(s->stream_codec_tag == AV_RL32("XVID") ||
  375. s->codec_tag == AV_RL32("XVID") || s->codec_tag == AV_RL32("XVIX") ||
  376. s->codec_tag == AV_RL32("RMP4") ||
  377. s->codec_tag == AV_RL32("SIPP")
  378. )
  379. s->xvid_build= 0;
  380. #if 0
  381. if(s->codec_tag == AV_RL32("DIVX") && s->vo_type==0 && s->vol_control_parameters==1
  382. && s->padding_bug_score > 0 && s->low_delay) // XVID with modified fourcc
  383. s->xvid_build= 0;
  384. #endif
  385. }
  386. if(s->xvid_build==-1 && s->divx_version==-1 && s->lavc_build==-1){
  387. if(s->codec_tag == AV_RL32("DIVX") && s->vo_type==0 && s->vol_control_parameters==0)
  388. s->divx_version= 400; //divx 4
  389. }
  390. if(s->xvid_build>=0 && s->divx_version>=0){
  391. s->divx_version=
  392. s->divx_build= -1;
  393. }
  394. if(s->workaround_bugs&FF_BUG_AUTODETECT){
  395. if(s->codec_tag == AV_RL32("XVIX"))
  396. s->workaround_bugs|= FF_BUG_XVID_ILACE;
  397. if(s->codec_tag == AV_RL32("UMP4")){
  398. s->workaround_bugs|= FF_BUG_UMP4;
  399. }
  400. if(s->divx_version>=500 && s->divx_build<1814){
  401. s->workaround_bugs|= FF_BUG_QPEL_CHROMA;
  402. }
  403. if(s->divx_version>502 && s->divx_build<1814){
  404. s->workaround_bugs|= FF_BUG_QPEL_CHROMA2;
  405. }
  406. if(s->xvid_build<=3U)
  407. s->padding_bug_score= 256*256*256*64;
  408. if(s->xvid_build<=1U)
  409. s->workaround_bugs|= FF_BUG_QPEL_CHROMA;
  410. if(s->xvid_build<=12U)
  411. s->workaround_bugs|= FF_BUG_EDGE;
  412. if(s->xvid_build<=32U)
  413. s->workaround_bugs|= FF_BUG_DC_CLIP;
  414. #define SET_QPEL_FUNC(postfix1, postfix2) \
  415. s->dsp.put_ ## postfix1 = ff_put_ ## postfix2;\
  416. s->dsp.put_no_rnd_ ## postfix1 = ff_put_no_rnd_ ## postfix2;\
  417. s->dsp.avg_ ## postfix1 = ff_avg_ ## postfix2;
  418. if(s->lavc_build<4653U)
  419. s->workaround_bugs|= FF_BUG_STD_QPEL;
  420. if(s->lavc_build<4655U)
  421. s->workaround_bugs|= FF_BUG_DIRECT_BLOCKSIZE;
  422. if(s->lavc_build<4670U){
  423. s->workaround_bugs|= FF_BUG_EDGE;
  424. }
  425. if(s->lavc_build<=4712U)
  426. s->workaround_bugs|= FF_BUG_DC_CLIP;
  427. if(s->divx_version>=0)
  428. s->workaround_bugs|= FF_BUG_DIRECT_BLOCKSIZE;
  429. //printf("padding_bug_score: %d\n", s->padding_bug_score);
  430. if(s->divx_version==501 && s->divx_build==20020416)
  431. s->padding_bug_score= 256*256*256*64;
  432. if(s->divx_version<500U){
  433. s->workaround_bugs|= FF_BUG_EDGE;
  434. }
  435. if(s->divx_version>=0)
  436. s->workaround_bugs|= FF_BUG_HPEL_CHROMA;
  437. #if 0
  438. if(s->divx_version==500)
  439. s->padding_bug_score= 256*256*256*64;
  440. /* very ugly XVID padding bug detection FIXME/XXX solve this differently
  441. * Let us hope this at least works.
  442. */
  443. if( s->resync_marker==0 && s->data_partitioning==0 && s->divx_version==-1
  444. && s->codec_id==CODEC_ID_MPEG4 && s->vo_type==0)
  445. s->workaround_bugs|= FF_BUG_NO_PADDING;
  446. if(s->lavc_build<4609U) //FIXME not sure about the version num but a 4609 file seems ok
  447. s->workaround_bugs|= FF_BUG_NO_PADDING;
  448. #endif
  449. }
  450. if(s->workaround_bugs& FF_BUG_STD_QPEL){
  451. SET_QPEL_FUNC(qpel_pixels_tab[0][ 5], qpel16_mc11_old_c)
  452. SET_QPEL_FUNC(qpel_pixels_tab[0][ 7], qpel16_mc31_old_c)
  453. SET_QPEL_FUNC(qpel_pixels_tab[0][ 9], qpel16_mc12_old_c)
  454. SET_QPEL_FUNC(qpel_pixels_tab[0][11], qpel16_mc32_old_c)
  455. SET_QPEL_FUNC(qpel_pixels_tab[0][13], qpel16_mc13_old_c)
  456. SET_QPEL_FUNC(qpel_pixels_tab[0][15], qpel16_mc33_old_c)
  457. SET_QPEL_FUNC(qpel_pixels_tab[1][ 5], qpel8_mc11_old_c)
  458. SET_QPEL_FUNC(qpel_pixels_tab[1][ 7], qpel8_mc31_old_c)
  459. SET_QPEL_FUNC(qpel_pixels_tab[1][ 9], qpel8_mc12_old_c)
  460. SET_QPEL_FUNC(qpel_pixels_tab[1][11], qpel8_mc32_old_c)
  461. SET_QPEL_FUNC(qpel_pixels_tab[1][13], qpel8_mc13_old_c)
  462. SET_QPEL_FUNC(qpel_pixels_tab[1][15], qpel8_mc33_old_c)
  463. }
  464. if(avctx->debug & FF_DEBUG_BUGS)
  465. av_log(s->avctx, AV_LOG_DEBUG, "bugs: %X lavc_build:%d xvid_build:%d divx_version:%d divx_build:%d %s\n",
  466. s->workaround_bugs, s->lavc_build, s->xvid_build, s->divx_version, s->divx_build,
  467. s->divx_packed ? "p" : "");
  468. #if HAVE_MMX
  469. 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)) {
  470. avctx->idct_algo= FF_IDCT_XVIDMMX;
  471. avctx->coded_width= 0; // force reinit
  472. // dsputil_init(&s->dsp, avctx);
  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. 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==CODEC_ID_H263 || s->codec_id==CODEC_ID_H263P || s->codec_id == 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(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 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_count(&s->gb) > s->gb.size_in_bits)
  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 || 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==CODEC_ID_MPEG4 && s->divx_packed){
  565. int current_pos= s->gb.buffer == s->bitstream_buffer ? 0 : (get_bits_count(&s->gb)>>3);
  566. int startcode_found=0;
  567. if(buf_size - current_pos > 7){
  568. int i;
  569. for(i=current_pos; i<buf_size-4; i++){
  570. if(buf[i]==0 && buf[i+1]==0 && buf[i+2]==1 && buf[i+3]==0xB6){
  571. startcode_found=!(buf[i+4]&0x40);
  572. break;
  573. }
  574. }
  575. }
  576. if(startcode_found){
  577. av_fast_malloc(
  578. &s->bitstream_buffer,
  579. &s->allocated_bitstream_buffer_size,
  580. buf_size - current_pos + FF_INPUT_BUFFER_PADDING_SIZE);
  581. if (!s->bitstream_buffer)
  582. return AVERROR(ENOMEM);
  583. memcpy(s->bitstream_buffer, buf + current_pos, buf_size - current_pos);
  584. s->bitstream_buffer_size= buf_size - current_pos;
  585. }
  586. }
  587. intrax8_decoded:
  588. ff_er_frame_end(s);
  589. if (avctx->hwaccel) {
  590. if (avctx->hwaccel->end_frame(avctx) < 0)
  591. return -1;
  592. }
  593. MPV_frame_end(s);
  594. assert(s->current_picture.f.pict_type == s->current_picture_ptr->f.pict_type);
  595. assert(s->current_picture.f.pict_type == s->pict_type);
  596. if (s->pict_type == AV_PICTURE_TYPE_B || s->low_delay) {
  597. *pict= *(AVFrame*)s->current_picture_ptr;
  598. } else if (s->last_picture_ptr != NULL) {
  599. *pict= *(AVFrame*)s->last_picture_ptr;
  600. }
  601. if(s->last_picture_ptr || s->low_delay){
  602. *data_size = sizeof(AVFrame);
  603. ff_print_debug_info(s, pict);
  604. }
  605. #ifdef PRINT_FRAME_TIME
  606. av_log(avctx, AV_LOG_DEBUG, "%"PRId64"\n", rdtsc()-time);
  607. #endif
  608. return (ret && (avctx->err_recognition & AV_EF_EXPLODE))?ret:get_consumed_bytes(s, buf_size);
  609. }
  610. AVCodec ff_h263_decoder = {
  611. .name = "h263",
  612. .type = AVMEDIA_TYPE_VIDEO,
  613. .id = CODEC_ID_H263,
  614. .priv_data_size = sizeof(MpegEncContext),
  615. .init = ff_h263_decode_init,
  616. .close = ff_h263_decode_end,
  617. .decode = ff_h263_decode_frame,
  618. .capabilities = CODEC_CAP_DRAW_HORIZ_BAND | CODEC_CAP_DR1 | CODEC_CAP_TRUNCATED | CODEC_CAP_DELAY,
  619. .flush= ff_mpeg_flush,
  620. .max_lowres= 3,
  621. .long_name= NULL_IF_CONFIG_SMALL("H.263 / H.263-1996, H.263+ / H.263-1998 / H.263 version 2"),
  622. .pix_fmts= ff_hwaccel_pixfmt_list_420,
  623. };