h263dec.c
Go to the documentation of this file.
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 
28 #include "libavutil/cpu.h"
29 #include "internal.h"
30 #include "avcodec.h"
31 #include "dsputil.h"
32 #include "mpegvideo.h"
33 #include "h263.h"
34 #include "h263_parser.h"
35 #include "mpeg4video_parser.h"
36 #include "msmpeg4.h"
37 #include "vdpau_internal.h"
38 #include "thread.h"
39 #include "flv.h"
40 #include "mpeg4video.h"
41 
42 //#define DEBUG
43 //#define PRINT_FRAME_TIME
44 
46 {
47  MpegEncContext *s = avctx->priv_data;
48 
49  s->avctx = avctx;
50  s->out_format = FMT_H263;
51 
52  s->width = avctx->coded_width;
53  s->height = avctx->coded_height;
55 
56  // set defaults
58  s->quant_precision=5;
60  s->low_delay= 1;
61  if (avctx->codec->id == AV_CODEC_ID_MSS2)
62  avctx->pix_fmt = AV_PIX_FMT_YUV420P;
63  else
64  avctx->pix_fmt = avctx->get_format(avctx, avctx->codec->pix_fmts);
65  s->unrestricted_mv= 1;
66 
67  /* select sub codec */
68  switch(avctx->codec->id) {
69  case AV_CODEC_ID_H263:
70  s->unrestricted_mv= 0;
72  break;
73  case AV_CODEC_ID_MPEG4:
74  break;
76  s->h263_pred = 1;
77  s->msmpeg4_version=1;
78  break;
80  s->h263_pred = 1;
81  s->msmpeg4_version=2;
82  break;
84  s->h263_pred = 1;
85  s->msmpeg4_version=3;
86  break;
87  case AV_CODEC_ID_WMV1:
88  s->h263_pred = 1;
89  s->msmpeg4_version=4;
90  break;
91  case AV_CODEC_ID_WMV2:
92  s->h263_pred = 1;
93  s->msmpeg4_version=5;
94  break;
95  case AV_CODEC_ID_VC1:
96  case AV_CODEC_ID_WMV3:
99  case AV_CODEC_ID_MSS2:
100  s->h263_pred = 1;
101  s->msmpeg4_version=6;
103  break;
104  case AV_CODEC_ID_H263I:
105  break;
106  case AV_CODEC_ID_FLV1:
107  s->h263_flv = 1;
108  break;
109  default:
110  return -1;
111  }
112  s->codec_id= avctx->codec->id;
113  avctx->hwaccel= ff_find_hwaccel(avctx->codec->id, avctx->pix_fmt);
114 
115  /* for h263, we allocate the images after having read the header */
116  if (avctx->codec->id != AV_CODEC_ID_H263 && avctx->codec->id != AV_CODEC_ID_MPEG4)
117  if (ff_MPV_common_init(s) < 0)
118  return -1;
119 
121 
122  return 0;
123 }
124 
126 {
127  MpegEncContext *s = avctx->priv_data;
128 
130  return 0;
131 }
132 
136 static int get_consumed_bytes(MpegEncContext *s, int buf_size){
137  int pos= (get_bits_count(&s->gb)+7)>>3;
138 
139  if(s->divx_packed || s->avctx->hwaccel){
140  //we would have to scan through the whole buf to handle the weird reordering ...
141  return buf_size;
142  }else if(s->flags&CODEC_FLAG_TRUNCATED){
143  pos -= s->parse_context.last_index;
144  if(pos<0) pos=0; // padding is not really read so this might be -1
145  return pos;
146  }else{
147  if(pos==0) pos=1; //avoid infinite loops (i doubt that is needed but ...)
148  if(pos+10>buf_size) pos=buf_size; // oops ;)
149 
150  return pos;
151  }
152 }
153 
155  const int part_mask= s->partitioned_frame ? (ER_AC_END|ER_AC_ERROR) : 0x7F;
156  const int mb_size = 16;
157  s->last_resync_gb= s->gb;
158  s->first_slice_line= 1;
159 
160  s->resync_mb_x= s->mb_x;
161  s->resync_mb_y= s->mb_y;
162 
163  ff_set_qscale(s, s->qscale);
164 
165  if (s->avctx->hwaccel) {
166  const uint8_t *start= s->gb.buffer + get_bits_count(&s->gb)/8;
167  const uint8_t *end = ff_h263_find_resync_marker(start + 1, s->gb.buffer_end);
168  skip_bits_long(&s->gb, 8*(end - start));
169  return s->avctx->hwaccel->decode_slice(s->avctx, start, end - start);
170  }
171 
172  if(s->partitioned_frame){
173  const int qscale= s->qscale;
174 
176  if(ff_mpeg4_decode_partitions(s) < 0)
177  return -1;
178  }
179 
180  /* restore variables which were modified */
181  s->first_slice_line=1;
182  s->mb_x= s->resync_mb_x;
183  s->mb_y= s->resync_mb_y;
184  ff_set_qscale(s, qscale);
185  }
186 
187  for(; s->mb_y < s->mb_height; s->mb_y++) {
188  /* per-row end of slice checks */
189  if(s->msmpeg4_version){
190  if(s->resync_mb_y + s->slice_height == s->mb_y){
192 
193  return 0;
194  }
195  }
196 
197  if(s->msmpeg4_version==1){
198  s->last_dc[0]=
199  s->last_dc[1]=
200  s->last_dc[2]= 128;
201  }
202 
204  for(; s->mb_x < s->mb_width; s->mb_x++) {
205  int ret;
206 
208 
209  if(s->resync_mb_x == s->mb_x && s->resync_mb_y+1 == s->mb_y){
210  s->first_slice_line=0;
211  }
212 
213  /* DCT & quantize */
214 
215  s->mv_dir = MV_DIR_FORWARD;
216  s->mv_type = MV_TYPE_16X16;
217 // s->mb_skipped = 0;
218  av_dlog(s, "%d %d %06X\n",
219  ret, get_bits_count(&s->gb), show_bits(&s->gb, 24));
220  ret= s->decode_mb(s, s->block);
221 
224 
225  if(ret<0){
226  const int xy= s->mb_x + s->mb_y*s->mb_stride;
227  if(ret==SLICE_END){
228  ff_MPV_decode_mb(s, s->block);
229  if(s->loop_filter)
231 
232  ff_er_add_slice(s, s->resync_mb_x, s->resync_mb_y, s->mb_x, s->mb_y, ER_MB_END&part_mask);
233 
234  s->padding_bug_score--;
235 
236  if(++s->mb_x >= s->mb_width){
237  s->mb_x=0;
238  ff_draw_horiz_band(s, s->mb_y*mb_size, mb_size);
240  s->mb_y++;
241  }
242  return 0;
243  }else if(ret==SLICE_NOEND){
244  av_log(s->avctx, AV_LOG_ERROR, "Slice mismatch at MB: %d\n", xy);
245  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);
246  return -1;
247  }
248  av_log(s->avctx, AV_LOG_ERROR, "Error at MB: %d\n", xy);
249  ff_er_add_slice(s, s->resync_mb_x, s->resync_mb_y, s->mb_x, s->mb_y, ER_MB_ERROR&part_mask);
250 
251  return -1;
252  }
253 
254  ff_MPV_decode_mb(s, s->block);
255  if(s->loop_filter)
257  }
258 
259  ff_draw_horiz_band(s, s->mb_y*mb_size, mb_size);
261 
262  s->mb_x= 0;
263  }
264 
265  assert(s->mb_x==0 && s->mb_y==s->mb_height);
266 
269  && get_bits_left(&s->gb) >= 48
270  && show_bits(&s->gb, 24)==0x4010
271  && !s->data_partitioning)
272  s->padding_bug_score+=32;
273 
274  /* try to detect the padding bug */
277  && get_bits_left(&s->gb) >=0
278  && get_bits_left(&s->gb) < 48
279 // && !s->resync_marker
280  && !s->data_partitioning){
281 
282  const int bits_count= get_bits_count(&s->gb);
283  const int bits_left = s->gb.size_in_bits - bits_count;
284 
285  if(bits_left==0){
286  s->padding_bug_score+=16;
287  } else if(bits_left != 1){
288  int v= show_bits(&s->gb, 8);
289  v|= 0x7F >> (7-(bits_count&7));
290 
291  if(v==0x7F && bits_left<=8)
292  s->padding_bug_score--;
293  else if(v==0x7F && ((get_bits_count(&s->gb)+8)&8) && bits_left<=16)
294  s->padding_bug_score+= 4;
295  else
296  s->padding_bug_score++;
297  }
298  }
299 
301  if(s->padding_bug_score > -2 && !s->data_partitioning /*&& (s->divx_version>=0 || !s->resync_marker)*/)
303  else
305  }
306 
307  // handle formats which don't have unique end markers
308  if(s->msmpeg4_version || (s->workaround_bugs&FF_BUG_NO_PADDING)){ //FIXME perhaps solve this more cleanly
309  int left= get_bits_left(&s->gb);
310  int max_extra=7;
311 
312  /* no markers in M$ crap */
314  max_extra+= 17;
315 
316  /* buggy padding but the frame should still end approximately at the bitstream end */
318  max_extra+= 48;
319  else if((s->workaround_bugs&FF_BUG_NO_PADDING))
320  max_extra+= 256*256*256*64;
321 
322  if(left>max_extra){
323  av_log(s->avctx, AV_LOG_ERROR, "discarding %d junk bits at end, next would be %X\n", left, show_bits(&s->gb, 24));
324  }
325  else if(left<0){
326  av_log(s->avctx, AV_LOG_ERROR, "overreading %d bits\n", -left);
327  }else
329 
330  return 0;
331  }
332 
333  av_log(s->avctx, AV_LOG_ERROR, "slice end not reached but screenspace end (%d left %06X, score= %d)\n",
334  get_bits_left(&s->gb),
335  show_bits(&s->gb, 24), s->padding_bug_score);
336 
337  ff_er_add_slice(s, s->resync_mb_x, s->resync_mb_y, s->mb_x, s->mb_y, ER_MB_END&part_mask);
338 
339  return -1;
340 }
341 
343  void *data, int *got_frame,
344  AVPacket *avpkt)
345 {
346  const uint8_t *buf = avpkt->data;
347  int buf_size = avpkt->size;
348  MpegEncContext *s = avctx->priv_data;
349  int ret;
350  AVFrame *pict = data;
351 
352 #ifdef PRINT_FRAME_TIME
353 uint64_t time= rdtsc();
354 #endif
355  s->flags= avctx->flags;
356  s->flags2= avctx->flags2;
357 
358  /* no supplementary picture */
359  if (buf_size == 0) {
360  /* special case for last picture */
361  if (s->low_delay==0 && s->next_picture_ptr) {
362  *pict = s->next_picture_ptr->f;
364 
365  *got_frame = 1;
366  }
367 
368  return 0;
369  }
370 
372  int next;
373 
375  next= ff_mpeg4_find_frame_end(&s->parse_context, buf, buf_size);
377  next= ff_h263_find_frame_end(&s->parse_context, buf, buf_size);
378  }else{
379  av_log(s->avctx, AV_LOG_ERROR, "this codec does not support truncated bitstreams\n");
380  return -1;
381  }
382 
383  if( ff_combine_frame(&s->parse_context, next, (const uint8_t **)&buf, &buf_size) < 0 )
384  return buf_size;
385  }
386 
387  if (s->bitstream_buffer_size && (s->divx_packed || buf_size < 20)) // divx 5.01+/xvid frame reorder
388  ret = init_get_bits8(&s->gb, s->bitstream_buffer,
390  else
391  ret = init_get_bits8(&s->gb, buf, buf_size);
392  s->bitstream_buffer_size = 0;
393 
394  if (ret < 0)
395  return ret;
396 
397  if (!s->context_initialized)
398  // we need the idct permutaton for reading a custom matrix
399  if ((ret = ff_MPV_common_init(s)) < 0)
400  return ret;
401 
402  /* We need to set current_picture_ptr before reading the header,
403  * otherwise we cannot store anyting in there */
404  if (s->current_picture_ptr == NULL || s->current_picture_ptr->f.data[0]) {
405  int i= ff_find_unused_picture(s, 0);
406  if (i < 0)
407  return i;
408  s->current_picture_ptr= &s->picture[i];
409  }
410 
411  /* let's go :-) */
412  if (CONFIG_WMV2_DECODER && s->msmpeg4_version==5) {
414  } else if (CONFIG_MSMPEG4_DECODER && s->msmpeg4_version) {
416  } else if (CONFIG_MPEG4_DECODER && s->h263_pred) {
417  if(s->avctx->extradata_size && s->picture_number==0){
418  GetBitContext gb;
419 
420  ret = init_get_bits8(&gb, s->avctx->extradata,
421  s->avctx->extradata_size);
422  if (ret < 0)
423  return ret;
425  }
426  ret = ff_mpeg4_decode_picture_header(s, &s->gb);
427  } else if (CONFIG_H263I_DECODER && s->codec_id == AV_CODEC_ID_H263I) {
429  } else if (CONFIG_FLV_DECODER && s->h263_flv) {
431  } else {
433  }
434 
435  if(ret==FRAME_SKIPPED) return get_consumed_bytes(s, buf_size);
436 
437  /* skip if the header was thrashed */
438  if (ret < 0){
439  av_log(s->avctx, AV_LOG_ERROR, "header damaged\n");
440  return -1;
441  }
442 
443  avctx->has_b_frames= !s->low_delay;
444 
445  if(s->xvid_build==-1 && s->divx_version==-1 && s->lavc_build==-1){
446  if(s->stream_codec_tag == AV_RL32("XVID") ||
447  s->codec_tag == AV_RL32("XVID") || s->codec_tag == AV_RL32("XVIX") ||
448  s->codec_tag == AV_RL32("RMP4") ||
449  s->codec_tag == AV_RL32("SIPP")
450  )
451  s->xvid_build= 0;
452 #if 0
453  if(s->codec_tag == AV_RL32("DIVX") && s->vo_type==0 && s->vol_control_parameters==1
454  && s->padding_bug_score > 0 && s->low_delay) // XVID with modified fourcc
455  s->xvid_build= 0;
456 #endif
457  }
458 
459  if(s->xvid_build==-1 && s->divx_version==-1 && s->lavc_build==-1){
460  if(s->codec_tag == AV_RL32("DIVX") && s->vo_type==0 && s->vol_control_parameters==0)
461  s->divx_version= 400; //divx 4
462  }
463 
464  if(s->xvid_build>=0 && s->divx_version>=0){
465  s->divx_version=
466  s->divx_build= -1;
467  }
468 
470  if(s->codec_tag == AV_RL32("XVIX"))
472 
473  if(s->codec_tag == AV_RL32("UMP4")){
475  }
476 
477  if(s->divx_version>=500 && s->divx_build<1814){
479  }
480 
481  if(s->divx_version>502 && s->divx_build<1814){
483  }
484 
485  if(s->xvid_build<=3U)
486  s->padding_bug_score= 256*256*256*64;
487 
488  if(s->xvid_build<=1U)
490 
491  if(s->xvid_build<=12U)
493 
494  if(s->xvid_build<=32U)
496 
497 #define SET_QPEL_FUNC(postfix1, postfix2) \
498  s->dsp.put_ ## postfix1 = ff_put_ ## postfix2;\
499  s->dsp.put_no_rnd_ ## postfix1 = ff_put_no_rnd_ ## postfix2;\
500  s->dsp.avg_ ## postfix1 = ff_avg_ ## postfix2;
501 
502  if(s->lavc_build<4653U)
504 
505  if(s->lavc_build<4655U)
507 
508  if(s->lavc_build<4670U){
510  }
511 
512  if(s->lavc_build<=4712U)
514 
515  if(s->divx_version>=0)
517  if(s->divx_version==501 && s->divx_build==20020416)
518  s->padding_bug_score= 256*256*256*64;
519 
520  if(s->divx_version<500U){
522  }
523 
524  if(s->divx_version>=0)
526 #if 0
527  if(s->divx_version==500)
528  s->padding_bug_score= 256*256*256*64;
529 
530  /* very ugly XVID padding bug detection FIXME/XXX solve this differently
531  * Let us hope this at least works.
532  */
533  if( s->resync_marker==0 && s->data_partitioning==0 && s->divx_version==-1
534  && s->codec_id==AV_CODEC_ID_MPEG4 && s->vo_type==0)
536 
537  if(s->lavc_build<4609U) //FIXME not sure about the version num but a 4609 file seems ok
539 #endif
540  }
541 
543  SET_QPEL_FUNC(qpel_pixels_tab[0][ 5], qpel16_mc11_old_c)
544  SET_QPEL_FUNC(qpel_pixels_tab[0][ 7], qpel16_mc31_old_c)
545  SET_QPEL_FUNC(qpel_pixels_tab[0][ 9], qpel16_mc12_old_c)
546  SET_QPEL_FUNC(qpel_pixels_tab[0][11], qpel16_mc32_old_c)
547  SET_QPEL_FUNC(qpel_pixels_tab[0][13], qpel16_mc13_old_c)
548  SET_QPEL_FUNC(qpel_pixels_tab[0][15], qpel16_mc33_old_c)
549 
550  SET_QPEL_FUNC(qpel_pixels_tab[1][ 5], qpel8_mc11_old_c)
551  SET_QPEL_FUNC(qpel_pixels_tab[1][ 7], qpel8_mc31_old_c)
552  SET_QPEL_FUNC(qpel_pixels_tab[1][ 9], qpel8_mc12_old_c)
553  SET_QPEL_FUNC(qpel_pixels_tab[1][11], qpel8_mc32_old_c)
554  SET_QPEL_FUNC(qpel_pixels_tab[1][13], qpel8_mc13_old_c)
555  SET_QPEL_FUNC(qpel_pixels_tab[1][15], qpel8_mc33_old_c)
556  }
557 
558  if(avctx->debug & FF_DEBUG_BUGS)
559  av_log(s->avctx, AV_LOG_DEBUG, "bugs: %X lavc_build:%d xvid_build:%d divx_version:%d divx_build:%d %s\n",
561  s->divx_packed ? "p" : "");
562 
563 #if HAVE_MMX
565  avctx->idct_algo= FF_IDCT_XVIDMMX;
567  s->picture_number=0;
568  }
569 #endif
570 
571  /* After H263 & mpeg4 header decode we have the height, width,*/
572  /* and other parameters. So then we could init the picture */
573  /* FIXME: By the way H263 decoder is evolving it should have */
574  /* an H263EncContext */
575 
576  if (s->width != avctx->coded_width ||
577  s->height != avctx->coded_height ||
578  s->context_reinit) {
579  /* H.263 could change picture size any time */
580  s->context_reinit = 0;
581 
582  avcodec_set_dimensions(avctx, s->width, s->height);
583 
584  if ((ret = ff_MPV_common_frame_size_change(s)))
585  return ret;
586  }
587 
590 
591  // for skipping the frame
594 
595  /* skip B-frames if we don't have reference frames */
596  if (s->last_picture_ptr == NULL &&
597  (s->pict_type == AV_PICTURE_TYPE_B || s->droppable))
598  return get_consumed_bytes(s, buf_size);
601  || avctx->skip_frame >= AVDISCARD_ALL)
602  return get_consumed_bytes(s, buf_size);
603 
604  if(s->next_p_frame_damaged){
606  return get_consumed_bytes(s, buf_size);
607  else
609  }
610 
614  }else if((!s->no_rounding) || s->pict_type==AV_PICTURE_TYPE_B){
617  }else{
620  }
621 
622  if(ff_MPV_frame_start(s, avctx) < 0)
623  return -1;
624 
625  if (!s->divx_packed) ff_thread_finish_setup(avctx);
626 
629  goto frame_end;
630  }
631 
632  if (avctx->hwaccel) {
633  if (avctx->hwaccel->start_frame(avctx, s->gb.buffer, s->gb.buffer_end - s->gb.buffer) < 0)
634  return -1;
635  }
636 
638 
639  //the second part of the wmv2 header contains the MB skip bits which are stored in current_picture->mb_type
640  //which is not available before ff_MPV_frame_start()
641  if (CONFIG_WMV2_DECODER && s->msmpeg4_version==5){
643  if(ret<0) return ret;
644  if(ret==1) goto intrax8_decoded;
645  }
646 
647  /* decode each macroblock */
648  s->mb_x=0;
649  s->mb_y=0;
650 
651  ret = decode_slice(s);
652  while(s->mb_y<s->mb_height){
653  if(s->msmpeg4_version){
654  if(s->slice_height==0 || s->mb_x!=0 || (s->mb_y%s->slice_height)!=0 || get_bits_left(&s->gb)<0)
655  break;
656  }else{
657  int prev_x=s->mb_x, prev_y=s->mb_y;
658  if(ff_h263_resync(s)<0)
659  break;
660  if (prev_y * s->mb_width + prev_x < s->mb_y * s->mb_width + s->mb_x)
661  s->error_occurred = 1;
662  }
663 
664  if(s->msmpeg4_version<4 && s->h263_pred)
666 
667  if (decode_slice(s) < 0) ret = AVERROR_INVALIDDATA;
668  }
669 
671  if(!CONFIG_MSMPEG4_DECODER || ff_msmpeg4_decode_ext_header(s, buf_size) < 0){
673  }
674 
675  assert(s->bitstream_buffer_size==0);
676 frame_end:
677  /* divx 5.01+ bistream reorder stuff */
678  if(s->codec_id==AV_CODEC_ID_MPEG4 && s->divx_packed){
679  int current_pos= get_bits_count(&s->gb)>>3;
680  int startcode_found=0;
681 
682  if(buf_size - current_pos > 5){
683  int i;
684  for(i=current_pos; i<buf_size-3; i++){
685  if(buf[i]==0 && buf[i+1]==0 && buf[i+2]==1 && buf[i+3]==0xB6){
686  startcode_found=1;
687  break;
688  }
689  }
690  }
691  if(s->gb.buffer == s->bitstream_buffer && buf_size>7 && s->xvid_build>=0){ //xvid style
692  startcode_found=1;
693  current_pos=0;
694  }
695 
696  if(startcode_found){
698  &s->bitstream_buffer,
700  buf_size - current_pos + FF_INPUT_BUFFER_PADDING_SIZE);
701  if (!s->bitstream_buffer)
702  return AVERROR(ENOMEM);
703  memcpy(s->bitstream_buffer, buf + current_pos, buf_size - current_pos);
704  s->bitstream_buffer_size= buf_size - current_pos;
705  }
706  }
707 
708 intrax8_decoded:
709  ff_er_frame_end(s);
710 
711  if (avctx->hwaccel) {
712  if (avctx->hwaccel->end_frame(avctx) < 0)
713  return -1;
714  }
715 
716  ff_MPV_frame_end(s);
717 
719  assert(s->current_picture.f.pict_type == s->pict_type);
720  if (s->pict_type == AV_PICTURE_TYPE_B || s->low_delay) {
721  *pict = s->current_picture_ptr->f;
722  } else if (s->last_picture_ptr != NULL) {
723  *pict = s->last_picture_ptr->f;
724  }
725 
726  if(s->last_picture_ptr || s->low_delay){
727  *got_frame = 1;
728  ff_print_debug_info(s, pict);
729  }
730 
731 #ifdef PRINT_FRAME_TIME
732 av_log(avctx, AV_LOG_DEBUG, "%"PRId64"\n", rdtsc()-time);
733 #endif
734 
735  return (ret && (avctx->err_recognition & AV_EF_EXPLODE))?ret:get_consumed_bytes(s, buf_size);
736 }
737 
739  .name = "h263",
740  .type = AVMEDIA_TYPE_VIDEO,
741  .id = AV_CODEC_ID_H263,
742  .priv_data_size = sizeof(MpegEncContext),
746  .capabilities = CODEC_CAP_DRAW_HORIZ_BAND | CODEC_CAP_DR1 |
748  .flush = ff_mpeg_flush,
749  .long_name = NULL_IF_CONFIG_SMALL("H.263 / H.263-1996, H.263+ / H.263-1998 / H.263 version 2"),
750  .pix_fmts = ff_hwaccel_pixfmt_list_420,
751 };
int bitstream_buffer_size
Definition: mpegvideo.h:589
enum AVPixelFormat ff_hwaccel_pixfmt_list_420[]
Definition: mpegvideo.c:133
#define ER_AC_END
Definition: mpegvideo.h:498
const struct AVCodec * codec
Definition: avcodec.h:1348
discard all frames except keyframes
Definition: avcodec.h:535
void ff_init_block_index(MpegEncContext *s)
Definition: mpegvideo.c:2466
int(* start_frame)(AVCodecContext *avctx, const uint8_t *buf, uint32_t buf_size)
Called at the beginning of each frame or field picture.
Definition: avcodec.h:3106
int picture_number
Definition: mpegvideo.h:245
This structure describes decoded (raw) audio or video data.
Definition: avcodec.h:989
struct MpegEncContext MpegEncContext
MpegEncContext.
int vol_control_parameters
does the stream contain the low_delay flag, used to workaround buggy encoders
Definition: mpegvideo.h:572
mpeg2/4, h264 default
Definition: avcodec.h:585
int coded_width
Bitstream width / height, may be different from width/height.
Definition: avcodec.h:1515
av_cold int ff_dct_common_init(MpegEncContext *s)
Definition: mpegvideo.c:181
av_cold int ff_MPV_common_init(MpegEncContext *s)
init common structure for both encoder and decoder.
Definition: mpegvideo.c:882
#define SLICE_NOEND
no end marker or error found but mb count exceeded
Definition: mpegvideo.h:680
void ff_MPV_report_decode_progress(MpegEncContext *s)
Definition: mpegvideo.c:2760
static void skip_bits_long(GetBitContext *s, int n)
Definition: get_bits.h:197
static int decode_slice(MpegEncContext *s)
Definition: h263dec.c:154
int msmpeg4_version
0=not msmpeg4, 1=mp41, 2=mp42, 3=mp43/divx3 4=wmv1/7 5=wmv2/8
Definition: mpegvideo.h:616
void avcodec_set_dimensions(AVCodecContext *s, int width, int height)
Definition: utils.c:149
int size
Definition: avcodec.h:916
uint8_t * bitstream_buffer
Definition: mpegvideo.h:588
enum AVCodecID codec_id
Definition: mpegvideo.h:227
const uint8_t * buffer
Definition: get_bits.h:53
enum AVPixelFormat pix_fmt
Pixel format, see AV_PIX_FMT_xxx.
Definition: avcodec.h:1533
void ff_vdpau_mpeg4_decode_picture(MpegEncContext *s, const uint8_t *buf, int buf_size)
Definition: vdpau.c:319
mpegvideo header.
av_dlog(ac->avr,"%d samples - audio_convert: %s to %s (%s)\n", len, av_get_sample_fmt_name(ac->in_fmt), av_get_sample_fmt_name(ac->out_fmt), use_generic?ac->func_descr_generic:ac->func_descr)
void ff_h263_decode_init_vlc(MpegEncContext *s)
Definition: ituh263dec.c:104
discard all
Definition: avcodec.h:536
int padding_bug_score
used to detect the VERY common padding bug in MPEG4
Definition: mpegvideo.h:579
int mb_num
number of MBs of a picture
Definition: mpegvideo.h:252
AVCodec.
Definition: avcodec.h:2960
int qscale
QP.
Definition: mpegvideo.h:342
int quant_precision
Definition: mpegvideo.h:556
int ff_mpeg4_decode_partitions(MpegEncContext *s)
Decode the first and second partition.
enum AVDiscard skip_frame
Definition: avcodec.h:2907
void ff_mpeg4_clean_buffers(MpegEncContext *s)
Definition: mpeg4video.c:43
struct AVHWAccel * hwaccel
Hardware accelerator in use.
Definition: avcodec.h:2622
#define CONFIG_WMV2_DECODER
Definition: config.h:524
void av_fast_malloc(void *ptr, unsigned int *size, size_t min_size)
Allocate a buffer, reusing the given one if large enough.
Definition: utils.c:72
int context_reinit
Definition: mpegvideo.h:717
static int decode(MimicContext *ctx, int quality, int num_coeffs, int is_iframe)
Definition: mimic.c:228
int ff_MPV_common_frame_size_change(MpegEncContext *s)
Definition: mpegvideo.c:1069
#define CONFIG_FLV_DECODER
Definition: config.h:410
uint8_t
enum OutputFormat out_format
output format
Definition: mpegvideo.h:219
qpel_mc_func(* qpel_put)[16]
Definition: mpegvideo.h:198
uint8_t * extradata
some codecs need / can use extradata like Huffman tables.
Definition: avcodec.h:1454
int no_rounding
apply no rounding to motion compensation (MPEG4, msmpeg4, ...) for b-frames rounding mode is always 0...
Definition: mpegvideo.h:407
int resync_marker
could this stream contain resync markers
Definition: mpegvideo.h:569
int ff_intel_h263_decode_picture_header(MpegEncContext *s)
Definition: intelh263dec.c:25
Picture current_picture
copy of the current picture structure.
Definition: mpegvideo.h:313
GetBitContext last_resync_gb
used to search for the next resync marker
Definition: mpegvideo.h:507
mpeg1, jpeg, h263
Definition: avcodec.h:586
const char data[16]
Definition: mxf.c:66
uint8_t * data
Definition: avcodec.h:915
static int get_bits_count(const GetBitContext *s)
Definition: get_bits.h:192
int flags2
AVCodecContext.flags2.
Definition: mpegvideo.h:231
int mb_height
number of MBs horizontally & vertically
Definition: mpegvideo.h:247
void ff_MPV_frame_end(MpegEncContext *s)
Definition: mpegvideo.c:1581
int codec_tag
internal codec_tag upper case converted from avctx codec_tag
Definition: mpegvideo.h:237
int ff_wmv2_decode_picture_header(MpegEncContext *s)
Definition: wmv2dec.c:114
enum AVChromaLocation chroma_sample_location
This defines the location of chroma samples.
Definition: avcodec.h:2086
static void ff_update_block_index(MpegEncContext *s)
Definition: mpegvideo.h:823
static int init(AVCodecParserContext *s)
Definition: h264_parser.c:335
qpel_mc_func put_qpel_pixels_tab[2][16]
Definition: dsputil.h:312
void ff_set_qscale(MpegEncContext *s, int qscale)
set qscale and update qscale dependent variables.
Definition: mpegvideo.c:2746
uint8_t * error_status_table
table of the error status of each MB
Definition: mpegvideo.h:493
const uint8_t * ff_h263_find_resync_marker(const uint8_t *p, const uint8_t *end)
static int get_bits_left(GetBitContext *gb)
Definition: get_bits.h:547
void ff_thread_finish_setup(AVCodecContext *avctx)
If the codec defines update_thread_context(), call this when they are ready for the next thread to st...
Definition: pthread.c:702
enum AVCodecID id
Definition: avcodec.h:2974
int has_b_frames
Size of the frame reordering buffer in the decoder.
Definition: avcodec.h:1634
int stream_codec_tag
internal stream_codec_tag upper case converted from avctx stream_codec_tag
Definition: mpegvideo.h:238
int last_dc[3]
last DC values for MPEG1
Definition: mpegvideo.h:321
Multithreading support functions.
int ff_combine_frame(ParseContext *pc, int next, const uint8_t **buf, int *buf_size)
Combine the (truncated) bitstream to a complete frame.
Definition: parser.c:215
int partitioned_frame
is current frame partitioned
Definition: mpegvideo.h:567
qpel_mc_func avg_qpel_pixels_tab[2][16]
Definition: dsputil.h:313
#define ER_MB_ERROR
Definition: mpegvideo.h:502
AVCodec ff_h263_decoder
Definition: h263dec.c:738
int unrestricted_mv
mv can point outside of the coded picture
Definition: mpegvideo.h:358
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
Definition: internal.h:88
int capabilities
Codec capabilities.
Definition: avcodec.h:2979
int ff_wmv2_decode_secondary_picture_header(MpegEncContext *s)
Definition: wmv2dec.c:134
int flags
CODEC_FLAG_*.
Definition: avcodec.h:1434
void av_log(void *avcl, int level, const char *fmt,...)
Definition: log.c:146
const char * name
Name of the codec implementation.
Definition: avcodec.h:2967
int low_delay
no reordering needed / has no b-frames
Definition: mpegvideo.h:570
GetBitContext gb
Definition: mpegvideo.h:626
int error_occurred
Definition: mpegvideo.h:492
int ff_flv_decode_picture_header(MpegEncContext *s)
Definition: flvdec.c:36
void ff_mpeg_flush(AVCodecContext *avctx)
Definition: mpegvideo.c:2498
int resync_mb_x
x position of last resync marker
Definition: mpegvideo.h:505
int(* decode_mb)(struct MpegEncContext *s, DCTELEM block[6][64])
Definition: mpegvideo.h:676
void ff_er_add_slice(MpegEncContext *s, int startx, int starty, int endx, int endy, int status)
Add a slice.
void ff_h263_loop_filter(MpegEncContext *s)
Definition: h263.c:142
int err_recognition
Definition: mpegvideo.h:510
enum AVPixelFormat * pix_fmts
array of supported pixel formats, or NULL if unknown, array is terminated by -1
Definition: avcodec.h:2981
enum AVPictureType pict_type
Picture type of the frame, see ?_TYPE below.
Definition: avcodec.h:1065
int err_recognition
Error recognition; may misdetect some more or less valid parts as errors.
Definition: avcodec.h:2602
int ff_h263_decode_mb(MpegEncContext *s, DCTELEM block[6][64])
Definition: ituh263dec.c:601
int ff_h263_get_gob_height(MpegEncContext *s)
Get the GOB height based on picture height.
Definition: h263.c:378
static int get_consumed_bytes(MpegEncContext *s, int buf_size)
Return the number of bytes consumed for building the current frame.
Definition: h263dec.c:136
int last_index
Definition: parser.h:31
int next_p_frame_damaged
set if the next p frame is damaged, to avoid showing trashed b frames
Definition: mpegvideo.h:509
int idct_algo
IDCT algorithm, see FF_IDCT_* below.
Definition: avcodec.h:2661
Picture * current_picture_ptr
pointer to the current picture
Definition: mpegvideo.h:317
#define CONFIG_MPEG4_VDPAU_DECODER
Definition: config.h:445
qpel_mc_func avg_2tap_qpel_pixels_tab[4][16]
Definition: dsputil.h:328
unsigned int allocated_bitstream_buffer_size
Definition: mpegvideo.h:590
int size_in_bits
Definition: get_bits.h:55
static unsigned int show_bits(GetBitContext *s, int n)
Show 1-25 bits.
Definition: get_bits.h:251
void ff_er_frame_end(MpegEncContext *s)
int ff_msmpeg4_decode_ext_header(MpegEncContext *s, int buf_size)
Definition: msmpeg4.c:851
#define AV_RL32
Definition: intreadwrite.h:146
MotionEstContext me
Definition: mpegvideo.h:405
#define ER_AC_ERROR
Definition: mpegvideo.h:495
#define SET_QPEL_FUNC(postfix1, postfix2)
int ff_h263_decode_frame(AVCodecContext *avctx, void *data, int *got_frame, AVPacket *avpkt)
Definition: h263dec.c:342
int ff_MPV_frame_start(MpegEncContext *s, AVCodecContext *avctx)
generic function for encode/decode called after coding/decoding the header and before a frame is code...
Definition: mpegvideo.c:1370
av_cold int ff_h263_decode_end(AVCodecContext *avctx)
Definition: h263dec.c:125
#define MV_TYPE_16X16
1 vector for the whole mb
Definition: mpegvideo.h:389
int first_slice_line
used in mpeg4 too to handle resync markers
Definition: mpegvideo.h:614
NULL
Definition: eval.c:52
external API header
void ff_h263_update_motion_val(MpegEncContext *s)
Definition: h263.c:49
int h263_flv
use flv h263 header
Definition: mpegvideo.h:225
static int init_get_bits8(GetBitContext *s, const uint8_t *buffer, int byte_size)
Initialize GetBitContext.
Definition: get_bits.h:404
int debug
debug
Definition: avcodec.h:2568
main external API structure.
Definition: avcodec.h:1339
static void close(AVCodecParserContext *s)
Definition: h264_parser.c:326
int height
picture size. must be a multiple of 16
Definition: mpegvideo.h:215
qpel_mc_func put_2tap_qpel_pixels_tab[4][16]
Definition: dsputil.h:327
#define SLICE_END
end marker found
Definition: mpegvideo.h:679
Picture * picture
main picture buffer
Definition: mpegvideo.h:255
int data_partitioning
data partitioning flag from header
Definition: mpegvideo.h:566
int extradata_size
Definition: avcodec.h:1455
int coded_height
Definition: avcodec.h:1515
enum AVPixelFormat(* get_format)(struct AVCodecContext *s, const enum AVPixelFormat *fmt)
callback to negotiate the pixelFormat
Definition: avcodec.h:1580
#define ER_MB_END
Definition: mpegvideo.h:503
void ff_draw_horiz_band(MpegEncContext *s, int y, int h)
Definition: mpegvideo.c:2399
#define CONFIG_MPEG4_DECODER
Definition: config.h:444
int context_initialized
Definition: mpegvideo.h:242
#define CONFIG_H263I_DECODER
Definition: config.h:417
int slice_height
in macroblocks
Definition: mpegvideo.h:613
void ff_er_frame_start(MpegEncContext *s)
AVHWAccel * ff_find_hwaccel(enum AVCodecID codec_id, enum AVPixelFormat pix_fmt)
Return the hardware accelerated codec for codec codec_id and pixel format pix_fmt.
Definition: utils.c:2048
DSPContext dsp
pointers for accelerated dsp functions
Definition: mpegvideo.h:361
int ff_h263_decode_picture_header(MpegEncContext *s)
Definition: ituh263dec.c:869
int av_get_cpu_flags(void)
Return the flags which specify extensions supported by the CPU.
Definition: cpu.c:25
#define MV_DIR_FORWARD
Definition: mpegvideo.h:385
int pict_type
AV_PICTURE_TYPE_I, AV_PICTURE_TYPE_P, AV_PICTURE_TYPE_B, ...
Definition: mpegvideo.h:349
DCTELEM(* block)[64]
points to one of the following blocks
Definition: mpegvideo.h:674
int h263_pred
use mpeg4/h263 ac/dc predictions
Definition: mpegvideo.h:220
av_cold int ff_h263_decode_init(AVCodecContext *avctx)
Definition: h263dec.c:45
int ff_h263_resync(MpegEncContext *s)
Decode the group of blocks / video packet header.
Definition: ituh263dec.c:230
uint8_t * data[AV_NUM_DATA_POINTERS]
pointer to the picture/channel planes.
Definition: avcodec.h:997
qpel_mc_func(* qpel_avg)[16]
Definition: mpegvideo.h:199
Definition: vf_drawbox.c:36
MpegEncContext.
Definition: mpegvideo.h:211
Picture * next_picture_ptr
pointer to the next picture (for bidir pred)
Definition: mpegvideo.h:316
struct AVCodecContext * avctx
Definition: mpegvideo.h:213
discard all non reference
Definition: avcodec.h:533
planar YUV 4:2:0, 12bpp, (1 Cr & Cb sample per 2x2 Y samples)
Definition: pixfmt.h:65
common internal api header.
int mb_stride
mb_width+1 used for some arrays to allow simple addressing of left & top MBs without sig11 ...
Definition: mpegvideo.h:248
#define CONFIG_H263_DECODER
Definition: config.h:416
static av_cold void flush(AVCodecContext *avctx)
Flush (reset) the frame ID after seeking.
Definition: alsdec.c:1772
const uint8_t * buffer_end
Definition: get_bits.h:53
Picture * last_picture_ptr
pointer to the previous picture.
Definition: mpegvideo.h:315
Bi-dir predicted.
Definition: avutil.h:247
int workaround_bugs
Work around bugs in encoders which sometimes cannot be detected automatically.
Definition: avcodec.h:2517
DSP utils.
void * priv_data
Definition: avcodec.h:1382
void ff_MPV_decode_mb(MpegEncContext *s, DCTELEM block[12][64])
Definition: mpegvideo.c:2387
void ff_MPV_common_end(MpegEncContext *s)
Definition: mpegvideo.c:1141
void ff_print_debug_info(MpegEncContext *s, AVFrame *pict)
Print debugging info for the given picture.
Definition: mpegvideo.c:1743
int resync_mb_y
y position of last resync marker
Definition: mpegvideo.h:506
ParseContext parse_context
Definition: mpegvideo.h:512
int key_frame
1 -> keyframe, 0-> not
Definition: avcodec.h:1058
int flags2
CODEC_FLAG2_*.
Definition: avcodec.h:1441
struct AVFrame f
Definition: mpegvideo.h:95
int flags
AVCodecContext.flags (HQ, MV4, ...)
Definition: mpegvideo.h:230
int workaround_bugs
workaround bugs in encoders which cannot be detected automatically
Definition: mpegvideo.h:236
#define FRAME_SKIPPED
return value for header parsers if frame is not coded
Definition: mpegvideo.h:43
qpel_mc_func put_no_rnd_qpel_pixels_tab[2][16]
Definition: dsputil.h:314
int ff_mpeg4_decode_picture_header(MpegEncContext *s, GetBitContext *gb)
Decode mpeg4 headers.
int ff_msmpeg4_decode_picture_header(MpegEncContext *s)
Definition: msmpeg4.c:696
int ff_mpeg4_find_frame_end(ParseContext *pc, const uint8_t *buf, int buf_size)
Find the end of the current frame in the bitstream.
#define CONFIG_MSMPEG4_DECODER
Definition: msmpeg4.h:60
int(* decode_slice)(AVCodecContext *avctx, const uint8_t *buf, uint32_t buf_size)
Callback for each slice.
Definition: avcodec.h:3119
int ff_find_unused_picture(MpegEncContext *s, int shared)
Definition: mpegvideo.c:1331
int ff_h263_find_frame_end(ParseContext *pc, const uint8_t *buf, int buf_size)
Definition: h263_parser.c:30
int(* end_frame)(AVCodecContext *avctx)
Called at the end of each frame or field picture.
Definition: avcodec.h:3130
This structure stores compressed data.
Definition: avcodec.h:898
void ff_MPV_decode_defaults(MpegEncContext *s)
Set the given MpegEncContext to defaults for decoding.
Definition: mpegvideo.c:718