3 * Copyright (c) 2001 Fabrice Bellard
4 * Copyright (c) 2002-2004 Michael Niedermayer <michaelni@gmx.at>
6 * This file is part of FFmpeg.
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.
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.
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
24 * @file libavcodec/h263dec.c
31 #include "mpegvideo.h"
32 #include "h263_parser.h"
33 #include "mpeg4video_parser.h"
37 //#define PRINT_FRAME_TIME
39 av_cold
int ff_h263_decode_init(AVCodecContext
*avctx
)
41 MpegEncContext
*s
= avctx
->priv_data
;
44 s
->out_format
= FMT_H263
;
46 s
->width
= avctx
->coded_width
;
47 s
->height
= avctx
->coded_height
;
48 s
->workaround_bugs
= avctx
->workaround_bugs
;
51 MPV_decode_defaults(s
);
53 s
->decode_mb
= ff_h263_decode_mb
;
55 avctx
->pix_fmt
= PIX_FMT_YUV420P
;
56 s
->unrestricted_mv
= 1;
58 /* select sub codec */
59 switch(avctx
->codec
->id
) {
61 s
->unrestricted_mv
= 0;
64 s
->decode_mb
= ff_mpeg4_decode_mb
;
65 s
->time_increment_bits
= 4; /* default value for broken headers */
67 s
->low_delay
= 0; //default, might be overriden in the vol header during header parsing
69 case CODEC_ID_MSMPEG4V1
:
74 case CODEC_ID_MSMPEG4V2
:
79 case CODEC_ID_MSMPEG4V3
:
108 s
->codec_id
= avctx
->codec
->id
;
110 /* for h263, we allocate the images after having read the header */
111 if (avctx
->codec
->id
!= CODEC_ID_H263
&& avctx
->codec
->id
!= CODEC_ID_MPEG4
)
112 if (MPV_common_init(s
) < 0)
115 if (CONFIG_MSMPEG4_DECODER
&& s
->h263_msmpeg4
)
116 ff_msmpeg4_decode_init(s
);
118 h263_decode_init_vlc(s
);
123 av_cold
int ff_h263_decode_end(AVCodecContext
*avctx
)
125 MpegEncContext
*s
= avctx
->priv_data
;
132 * returns the number of bytes consumed for building the current frame
134 static int get_consumed_bytes(MpegEncContext
*s
, int buf_size
){
135 int pos
= (get_bits_count(&s
->gb
)+7)>>3;
138 //we would have to scan through the whole buf to handle the weird reordering ...
140 }else if(s
->flags
&CODEC_FLAG_TRUNCATED
){
141 pos
-= s
->parse_context
.last_index
;
142 if(pos
<0) pos
=0; // padding is not really read so this might be -1
145 if(pos
==0) pos
=1; //avoid infinite loops (i doubt that is needed but ...)
146 if(pos
+10>buf_size
) pos
=buf_size
; // oops ;)
152 static int decode_slice(MpegEncContext
*s
){
153 const int part_mask
= s
->partitioned_frame ?
(AC_END
|AC_ERROR
) : 0x7F;
154 const int mb_size
= 16>>s
->avctx
->lowres
;
155 s
->last_resync_gb
= s
->gb
;
156 s
->first_slice_line
= 1;
158 s
->resync_mb_x
= s
->mb_x
;
159 s
->resync_mb_y
= s
->mb_y
;
161 ff_set_qscale(s
, s
->qscale
);
163 if (s
->avctx
->hwaccel
)
166 if(s
->partitioned_frame
){
167 const int qscale
= s
->qscale
;
169 if(s
->codec_id
==CODEC_ID_MPEG4
){
170 if(ff_mpeg4_decode_partitions(s
) < 0)
174 /* restore variables which were modified */
175 s
->first_slice_line
=1;
176 s
->mb_x
= s
->resync_mb_x
;
177 s
->mb_y
= s
->resync_mb_y
;
178 ff_set_qscale(s
, qscale
);
181 for(; s
->mb_y
< s
->mb_height
; s
->mb_y
++) {
182 /* per-row end of slice checks */
183 if(s
->msmpeg4_version
){
184 if(s
->resync_mb_y
+ s
->slice_height
== s
->mb_y
){
185 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
);
191 if(s
->msmpeg4_version
==1){
197 ff_init_block_index(s
);
198 for(; s
->mb_x
< s
->mb_width
; s
->mb_x
++) {
201 ff_update_block_index(s
);
203 if(s
->resync_mb_x
== s
->mb_x
&& s
->resync_mb_y
+1 == s
->mb_y
){
204 s
->first_slice_line
=0;
209 s
->mv_dir
= MV_DIR_FORWARD
;
210 s
->mv_type
= MV_TYPE_16X16
;
211 // s->mb_skipped = 0;
212 //printf("%d %d %06X\n", ret, get_bits_count(&s->gb), show_bits(&s->gb, 24));
213 ret
= s
->decode_mb(s
, s
->block
);
215 if (s
->pict_type
!=FF_B_TYPE
)
216 ff_h263_update_motion_val(s
);
219 const int xy
= s
->mb_x
+ s
->mb_y
*s
->mb_stride
;
221 MPV_decode_mb(s
, s
->block
);
223 ff_h263_loop_filter(s
);
225 //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));
226 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
);
228 s
->padding_bug_score
--;
230 if(++s
->mb_x
>= s
->mb_width
){
232 ff_draw_horiz_band(s
, s
->mb_y
*mb_size
, mb_size
);
236 }else if(ret
==SLICE_NOEND
){
237 av_log(s
->avctx
, AV_LOG_ERROR
, "Slice mismatch at MB: %d\n", xy
);
238 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
);
241 av_log(s
->avctx
, AV_LOG_ERROR
, "Error at MB: %d\n", xy
);
242 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
);
247 MPV_decode_mb(s
, s
->block
);
249 ff_h263_loop_filter(s
);
252 ff_draw_horiz_band(s
, s
->mb_y
*mb_size
, mb_size
);
257 assert(s
->mb_x
==0 && s
->mb_y
==s
->mb_height
);
259 /* try to detect the padding bug */
260 if( s
->codec_id
==CODEC_ID_MPEG4
261 && (s
->workaround_bugs
&FF_BUG_AUTODETECT
)
262 && s
->gb
.size_in_bits
- get_bits_count(&s
->gb
) >=0
263 && s
->gb
.size_in_bits
- get_bits_count(&s
->gb
) < 48
264 // && !s->resync_marker
265 && !s
->data_partitioning
){
267 const int bits_count
= get_bits_count(&s
->gb
);
268 const int bits_left
= s
->gb
.size_in_bits
- bits_count
;
271 s
->padding_bug_score
+=16;
272 } else if(bits_left
!= 1){
273 int v
= show_bits(&s
->gb
, 8);
274 v
|= 0x7F >> (7-(bits_count
&7));
276 if(v
==0x7F && bits_left
<=8)
277 s
->padding_bug_score
--;
278 else if(v
==0x7F && ((get_bits_count(&s
->gb
)+8)&8) && bits_left
<=16)
279 s
->padding_bug_score
+= 4;
281 s
->padding_bug_score
++;
285 if(s
->workaround_bugs
&FF_BUG_AUTODETECT
){
286 if(s
->padding_bug_score
> -2 && !s
->data_partitioning
/*&& (s->divx_version || !s->resync_marker)*/)
287 s
->workaround_bugs
|= FF_BUG_NO_PADDING
;
289 s
->workaround_bugs
&= ~FF_BUG_NO_PADDING
;
292 // handle formats which don't have unique end markers
293 if(s
->msmpeg4_version
|| (s
->workaround_bugs
&FF_BUG_NO_PADDING
)){ //FIXME perhaps solve this more cleanly
294 int left
= s
->gb
.size_in_bits
- get_bits_count(&s
->gb
);
297 /* no markers in M$ crap */
298 if(s
->msmpeg4_version
&& s
->pict_type
==FF_I_TYPE
)
301 /* buggy padding but the frame should still end approximately at the bitstream end */
302 if((s
->workaround_bugs
&FF_BUG_NO_PADDING
) && s
->error_recognition
>=3)
304 else if((s
->workaround_bugs
&FF_BUG_NO_PADDING
))
305 max_extra
+= 256*256*256*64;
308 av_log(s
->avctx
, AV_LOG_ERROR
, "discarding %d junk bits at end, next would be %X\n", left
, show_bits(&s
->gb
, 24));
311 av_log(s
->avctx
, AV_LOG_ERROR
, "overreading %d bits\n", -left
);
313 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
);
318 av_log(s
->avctx
, AV_LOG_ERROR
, "slice end not reached but screenspace end (%d left %06X, score= %d)\n",
319 s
->gb
.size_in_bits
- get_bits_count(&s
->gb
),
320 show_bits(&s
->gb
, 24), s
->padding_bug_score
);
322 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
);
327 int ff_h263_decode_frame(AVCodecContext
*avctx
,
328 void *data
, int *data_size
,
329 const uint8_t *buf
, int buf_size
)
331 MpegEncContext
*s
= avctx
->priv_data
;
333 AVFrame
*pict
= data
;
335 #ifdef PRINT_FRAME_TIME
336 uint64_t time
= rdtsc();
339 av_log(avctx
, AV_LOG_DEBUG
, "*****frame %d size=%d\n", avctx
->frame_number
, buf_size
);
341 av_log(avctx
, AV_LOG_DEBUG
, "bytes=%x %x %x %x\n", buf
[0], buf
[1], buf
[2], buf
[3]);
343 s
->flags
= avctx
->flags
;
344 s
->flags2
= avctx
->flags2
;
346 /* no supplementary picture */
348 /* special case for last picture */
349 if (s
->low_delay
==0 && s
->next_picture_ptr
) {
350 *pict
= *(AVFrame
*)s
->next_picture_ptr
;
351 s
->next_picture_ptr
= NULL
;
353 *data_size
= sizeof(AVFrame
);
359 if(s
->flags
&CODEC_FLAG_TRUNCATED
){
362 if(CONFIG_MPEG4_DECODER
&& s
->codec_id
==CODEC_ID_MPEG4
){
363 next
= ff_mpeg4_find_frame_end(&s
->parse_context
, buf
, buf_size
);
364 }else if(CONFIG_H263_DECODER
&& s
->codec_id
==CODEC_ID_H263
){
365 next
= ff_h263_find_frame_end(&s
->parse_context
, buf
, buf_size
);
367 av_log(s
->avctx
, AV_LOG_ERROR
, "this codec does not support truncated bitstreams\n");
371 if( ff_combine_frame(&s
->parse_context
, next
, (const uint8_t **)&buf
, &buf_size
) < 0 )
378 if(s
->bitstream_buffer_size
&& (s
->divx_packed
|| buf_size
<20)){ //divx 5.01+/xvid frame reorder
379 init_get_bits(&s
->gb
, s
->bitstream_buffer
, s
->bitstream_buffer_size
*8);
381 init_get_bits(&s
->gb
, buf
, buf_size
*8);
382 s
->bitstream_buffer_size
=0;
384 if (!s
->context_initialized
) {
385 if (MPV_common_init(s
) < 0) //we need the idct permutaton for reading a custom matrix
389 /* We need to set current_picture_ptr before reading the header,
390 * otherwise we cannot store anyting in there */
391 if(s
->current_picture_ptr
==NULL
|| s
->current_picture_ptr
->data
[0]){
392 int i
= ff_find_unused_picture(s
, 0);
393 s
->current_picture_ptr
= &s
->picture
[i
];
397 if (CONFIG_WMV2_DECODER
&& s
->msmpeg4_version
==5) {
398 ret
= ff_wmv2_decode_picture_header(s
);
399 } else if (CONFIG_MSMPEG4_DECODER
&& s
->msmpeg4_version
) {
400 ret
= msmpeg4_decode_picture_header(s
);
401 } else if (s
->h263_pred
) {
402 if(s
->avctx
->extradata_size
&& s
->picture_number
==0){
405 init_get_bits(&gb
, s
->avctx
->extradata
, s
->avctx
->extradata_size
*8);
406 ret
= ff_mpeg4_decode_picture_header(s
, &gb
);
408 ret
= ff_mpeg4_decode_picture_header(s
, &s
->gb
);
409 } else if (s
->codec_id
== CODEC_ID_H263I
) {
410 ret
= intel_h263_decode_picture_header(s
);
411 } else if (s
->h263_flv
) {
412 ret
= flv_h263_decode_picture_header(s
);
414 ret
= h263_decode_picture_header(s
);
417 if(ret
==FRAME_SKIPPED
) return get_consumed_bytes(s
, buf_size
);
419 /* skip if the header was thrashed */
421 av_log(s
->avctx
, AV_LOG_ERROR
, "header damaged\n");
425 avctx
->has_b_frames
= !s
->low_delay
;
427 if(s
->xvid_build
==0 && s
->divx_version
==0 && s
->lavc_build
==0){
428 if(s
->stream_codec_tag
== AV_RL32("XVID") ||
429 s
->codec_tag
== AV_RL32("XVID") || s
->codec_tag
== AV_RL32("XVIX") ||
430 s
->codec_tag
== AV_RL32("RMP4"))
433 if(s
->codec_tag
== AV_RL32("DIVX") && s
->vo_type
==0 && s
->vol_control_parameters
==1
434 && s
->padding_bug_score
> 0 && s
->low_delay
) // XVID with modified fourcc
439 if(s
->xvid_build
==0 && s
->divx_version
==0 && s
->lavc_build
==0){
440 if(s
->codec_tag
== AV_RL32("DIVX") && s
->vo_type
==0 && s
->vol_control_parameters
==0)
441 s
->divx_version
= 400; //divx 4
444 if(s
->xvid_build
&& s
->divx_version
){
449 if(s
->workaround_bugs
&FF_BUG_AUTODETECT
){
450 if(s
->codec_tag
== AV_RL32("XVIX"))
451 s
->workaround_bugs
|= FF_BUG_XVID_ILACE
;
453 if(s
->codec_tag
== AV_RL32("UMP4")){
454 s
->workaround_bugs
|= FF_BUG_UMP4
;
457 if(s
->divx_version
>=500 && s
->divx_build
<1814){
458 s
->workaround_bugs
|= FF_BUG_QPEL_CHROMA
;
461 if(s
->divx_version
>502 && s
->divx_build
<1814){
462 s
->workaround_bugs
|= FF_BUG_QPEL_CHROMA2
;
465 if(s
->xvid_build
&& s
->xvid_build
<=3)
466 s
->padding_bug_score
= 256*256*256*64;
468 if(s
->xvid_build
&& s
->xvid_build
<=1)
469 s
->workaround_bugs
|= FF_BUG_QPEL_CHROMA
;
471 if(s
->xvid_build
&& s
->xvid_build
<=12)
472 s
->workaround_bugs
|= FF_BUG_EDGE
;
474 if(s
->xvid_build
&& s
->xvid_build
<=32)
475 s
->workaround_bugs
|= FF_BUG_DC_CLIP
;
477 #define SET_QPEL_FUNC(postfix1, postfix2) \
478 s->dsp.put_ ## postfix1 = ff_put_ ## postfix2;\
479 s->dsp.put_no_rnd_ ## postfix1 = ff_put_no_rnd_ ## postfix2;\
480 s->dsp.avg_ ## postfix1 = ff_avg_ ## postfix2;
482 if(s
->lavc_build
&& s
->lavc_build
<4653)
483 s
->workaround_bugs
|= FF_BUG_STD_QPEL
;
485 if(s
->lavc_build
&& s
->lavc_build
<4655)
486 s
->workaround_bugs
|= FF_BUG_DIRECT_BLOCKSIZE
;
488 if(s
->lavc_build
&& s
->lavc_build
<4670){
489 s
->workaround_bugs
|= FF_BUG_EDGE
;
492 if(s
->lavc_build
&& s
->lavc_build
<=4712)
493 s
->workaround_bugs
|= FF_BUG_DC_CLIP
;
496 s
->workaround_bugs
|= FF_BUG_DIRECT_BLOCKSIZE
;
497 //printf("padding_bug_score: %d\n", s->padding_bug_score);
498 if(s
->divx_version
==501 && s
->divx_build
==20020416)
499 s
->padding_bug_score
= 256*256*256*64;
501 if(s
->divx_version
&& s
->divx_version
<500){
502 s
->workaround_bugs
|= FF_BUG_EDGE
;
506 s
->workaround_bugs
|= FF_BUG_HPEL_CHROMA
;
508 if(s
->divx_version
==500)
509 s
->padding_bug_score
= 256*256*256*64;
511 /* very ugly XVID padding bug detection FIXME/XXX solve this differently
512 * Let us hope this at least works.
514 if( s
->resync_marker
==0 && s
->data_partitioning
==0 && s
->divx_version
==0
515 && s
->codec_id
==CODEC_ID_MPEG4
&& s
->vo_type
==0)
516 s
->workaround_bugs
|= FF_BUG_NO_PADDING
;
518 if(s
->lavc_build
&& s
->lavc_build
<4609) //FIXME not sure about the version num but a 4609 file seems ok
519 s
->workaround_bugs
|= FF_BUG_NO_PADDING
;
523 if(s
->workaround_bugs
& FF_BUG_STD_QPEL
){
524 SET_QPEL_FUNC(qpel_pixels_tab
[0][ 5], qpel16_mc11_old_c
)
525 SET_QPEL_FUNC(qpel_pixels_tab
[0][ 7], qpel16_mc31_old_c
)
526 SET_QPEL_FUNC(qpel_pixels_tab
[0][ 9], qpel16_mc12_old_c
)
527 SET_QPEL_FUNC(qpel_pixels_tab
[0][11], qpel16_mc32_old_c
)
528 SET_QPEL_FUNC(qpel_pixels_tab
[0][13], qpel16_mc13_old_c
)
529 SET_QPEL_FUNC(qpel_pixels_tab
[0][15], qpel16_mc33_old_c
)
531 SET_QPEL_FUNC(qpel_pixels_tab
[1][ 5], qpel8_mc11_old_c
)
532 SET_QPEL_FUNC(qpel_pixels_tab
[1][ 7], qpel8_mc31_old_c
)
533 SET_QPEL_FUNC(qpel_pixels_tab
[1][ 9], qpel8_mc12_old_c
)
534 SET_QPEL_FUNC(qpel_pixels_tab
[1][11], qpel8_mc32_old_c
)
535 SET_QPEL_FUNC(qpel_pixels_tab
[1][13], qpel8_mc13_old_c
)
536 SET_QPEL_FUNC(qpel_pixels_tab
[1][15], qpel8_mc33_old_c
)
539 if(avctx
->debug
& FF_DEBUG_BUGS
)
540 av_log(s
->avctx
, AV_LOG_DEBUG
, "bugs: %X lavc_build:%d xvid_build:%d divx_version:%d divx_build:%d %s\n",
541 s
->workaround_bugs
, s
->lavc_build
, s
->xvid_build
, s
->divx_version
, s
->divx_build
,
542 s
->divx_packed ?
"p" : "");
544 #if 0 // dump bits per frame / qp / complexity
547 if(!f
) f
=fopen("rate_qp_cplx.txt", "w");
548 fprintf(f
, "%d %d %f\n", buf_size
, s
->qscale
, buf_size
*(double)s
->qscale
);
553 if(s
->codec_id
== CODEC_ID_MPEG4
&& s
->xvid_build
&& avctx
->idct_algo
== FF_IDCT_AUTO
&& (mm_flags
& FF_MM_MMX
)){
554 avctx
->idct_algo
= FF_IDCT_XVIDMMX
;
555 avctx
->coded_width
= 0; // force reinit
556 // dsputil_init(&s->dsp, avctx);
561 /* After H263 & mpeg4 header decode we have the height, width,*/
562 /* and other parameters. So then we could init the picture */
563 /* FIXME: By the way H263 decoder is evolving it should have */
564 /* an H263EncContext */
566 if ( s
->width
!= avctx
->coded_width
567 || s
->height
!= avctx
->coded_height
) {
568 /* H.263 could change picture size any time */
569 ParseContext pc
= s
->parse_context
; //FIXME move these demuxng hack to avformat
570 s
->parse_context
.buffer
=0;
572 s
->parse_context
= pc
;
574 if (!s
->context_initialized
) {
575 avcodec_set_dimensions(avctx
, s
->width
, s
->height
);
580 if((s
->codec_id
==CODEC_ID_H263
|| s
->codec_id
==CODEC_ID_H263P
|| s
->codec_id
== CODEC_ID_H263I
))
581 s
->gob_index
= ff_h263_get_gob_height(s
);
584 s
->current_picture
.pict_type
= s
->pict_type
;
585 s
->current_picture
.key_frame
= s
->pict_type
== FF_I_TYPE
;
587 /* skip B-frames if we don't have reference frames */
588 if(s
->last_picture_ptr
==NULL
&& (s
->pict_type
==FF_B_TYPE
|| s
->dropable
)) return get_consumed_bytes(s
, buf_size
);
589 /* skip b frames if we are in a hurry */
590 if(avctx
->hurry_up
&& s
->pict_type
==FF_B_TYPE
) return get_consumed_bytes(s
, buf_size
);
591 if( (avctx
->skip_frame
>= AVDISCARD_NONREF
&& s
->pict_type
==FF_B_TYPE
)
592 || (avctx
->skip_frame
>= AVDISCARD_NONKEY
&& s
->pict_type
!=FF_I_TYPE
)
593 || avctx
->skip_frame
>= AVDISCARD_ALL
)
594 return get_consumed_bytes(s
, buf_size
);
595 /* skip everything if we are in a hurry>=5 */
596 if(avctx
->hurry_up
>=5) return get_consumed_bytes(s
, buf_size
);
598 if(s
->next_p_frame_damaged
){
599 if(s
->pict_type
==FF_B_TYPE
)
600 return get_consumed_bytes(s
, buf_size
);
602 s
->next_p_frame_damaged
=0;
605 if((s
->avctx
->flags2
& CODEC_FLAG2_FAST
) && s
->pict_type
==FF_B_TYPE
){
606 s
->me
.qpel_put
= s
->dsp
.put_2tap_qpel_pixels_tab
;
607 s
->me
.qpel_avg
= s
->dsp
.avg_2tap_qpel_pixels_tab
;
608 }else if((!s
->no_rounding
) || s
->pict_type
==FF_B_TYPE
){
609 s
->me
.qpel_put
= s
->dsp
.put_qpel_pixels_tab
;
610 s
->me
.qpel_avg
= s
->dsp
.avg_qpel_pixels_tab
;
612 s
->me
.qpel_put
= s
->dsp
.put_no_rnd_qpel_pixels_tab
;
613 s
->me
.qpel_avg
= s
->dsp
.avg_qpel_pixels_tab
;
616 if(MPV_frame_start(s
, avctx
) < 0)
620 av_log(avctx
, AV_LOG_DEBUG
, "qscale=%d\n", s
->qscale
);
623 ff_er_frame_start(s
);
625 //the second part of the wmv2 header contains the MB skip bits which are stored in current_picture->mb_type
626 //which is not available before MPV_frame_start()
627 if (CONFIG_WMV2_DECODER
&& s
->msmpeg4_version
==5){
628 ret
= ff_wmv2_decode_secondary_picture_header(s
);
629 if(ret
<0) return ret
;
630 if(ret
==1) goto intrax8_decoded
;
633 /* decode each macroblock */
638 while(s
->mb_y
<s
->mb_height
){
639 if(s
->msmpeg4_version
){
640 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
)
643 if(ff_h263_resync(s
)<0)
647 if(s
->msmpeg4_version
<4 && s
->h263_pred
)
648 ff_mpeg4_clean_buffers(s
);
653 if (s
->h263_msmpeg4
&& s
->msmpeg4_version
<4 && s
->pict_type
==FF_I_TYPE
)
654 if(!CONFIG_MSMPEG4_DECODER
|| msmpeg4_decode_ext_header(s
, buf_size
) < 0){
655 s
->error_status_table
[s
->mb_num
-1]= AC_ERROR
|DC_ERROR
|MV_ERROR
;
658 /* divx 5.01+ bistream reorder stuff */
659 if(s
->codec_id
==CODEC_ID_MPEG4
&& s
->bitstream_buffer_size
==0 && s
->divx_packed
){
660 int current_pos
= get_bits_count(&s
->gb
)>>3;
661 int startcode_found
=0;
663 if(buf_size
- current_pos
> 5){
665 for(i
=current_pos
; i
<buf_size
-3; i
++){
666 if(buf
[i
]==0 && buf
[i
+1]==0 && buf
[i
+2]==1 && buf
[i
+3]==0xB6){
672 if(s
->gb
.buffer
== s
->bitstream_buffer
&& buf_size
>20){ //xvid style
678 s
->bitstream_buffer
= av_fast_realloc(
680 &s
->allocated_bitstream_buffer_size
,
681 buf_size
- current_pos
+ FF_INPUT_BUFFER_PADDING_SIZE
);
682 memcpy(s
->bitstream_buffer
, buf
+ current_pos
, buf_size
- current_pos
);
683 s
->bitstream_buffer_size
= buf_size
- current_pos
;
692 assert(s
->current_picture
.pict_type
== s
->current_picture_ptr
->pict_type
);
693 assert(s
->current_picture
.pict_type
== s
->pict_type
);
694 if (s
->pict_type
== FF_B_TYPE
|| s
->low_delay
) {
695 *pict
= *(AVFrame
*)s
->current_picture_ptr
;
696 } else if (s
->last_picture_ptr
!= NULL
) {
697 *pict
= *(AVFrame
*)s
->last_picture_ptr
;
700 if(s
->last_picture_ptr
|| s
->low_delay
){
701 *data_size
= sizeof(AVFrame
);
702 ff_print_debug_info(s
, pict
);
705 /* Return the Picture timestamp as the frame number */
706 /* we subtract 1 because it is added on utils.c */
707 avctx
->frame_number
= s
->picture_number
- 1;
709 #ifdef PRINT_FRAME_TIME
710 av_log(avctx
, AV_LOG_DEBUG
, "%"PRId64
"\n", rdtsc()-time
);
713 return get_consumed_bytes(s
, buf_size
);
716 AVCodec mpeg4_decoder
= {
720 sizeof(MpegEncContext
),
724 ff_h263_decode_frame
,
725 CODEC_CAP_DRAW_HORIZ_BAND
| CODEC_CAP_DR1
| CODEC_CAP_TRUNCATED
| CODEC_CAP_DELAY
,
726 .flush
= ff_mpeg_flush
,
727 .long_name
= NULL_IF_CONFIG_SMALL("MPEG-4 part 2"),
730 AVCodec h263_decoder
= {
734 sizeof(MpegEncContext
),
738 ff_h263_decode_frame
,
739 CODEC_CAP_DRAW_HORIZ_BAND
| CODEC_CAP_DR1
| CODEC_CAP_TRUNCATED
| CODEC_CAP_DELAY
,
740 .flush
= ff_mpeg_flush
,
741 .long_name
= NULL_IF_CONFIG_SMALL("H.263 / H.263-1996, H.263+ / H.263-1998"),
744 AVCodec msmpeg4v1_decoder
= {
748 sizeof(MpegEncContext
),
752 ff_h263_decode_frame
,
753 CODEC_CAP_DRAW_HORIZ_BAND
| CODEC_CAP_DR1
,
754 .long_name
= NULL_IF_CONFIG_SMALL("MPEG-4 part 2 Microsoft variant version 1"),
757 AVCodec msmpeg4v2_decoder
= {
761 sizeof(MpegEncContext
),
765 ff_h263_decode_frame
,
766 CODEC_CAP_DRAW_HORIZ_BAND
| CODEC_CAP_DR1
,
767 .long_name
= NULL_IF_CONFIG_SMALL("MPEG-4 part 2 Microsoft variant version 2"),
770 AVCodec msmpeg4v3_decoder
= {
774 sizeof(MpegEncContext
),
778 ff_h263_decode_frame
,
779 CODEC_CAP_DRAW_HORIZ_BAND
| CODEC_CAP_DR1
,
780 .long_name
= NULL_IF_CONFIG_SMALL("MPEG-4 part 2 Microsoft variant version 3"),
783 AVCodec wmv1_decoder
= {
787 sizeof(MpegEncContext
),
791 ff_h263_decode_frame
,
792 CODEC_CAP_DRAW_HORIZ_BAND
| CODEC_CAP_DR1
,
793 .long_name
= NULL_IF_CONFIG_SMALL("Windows Media Video 7"),
796 AVCodec h263i_decoder
= {
800 sizeof(MpegEncContext
),
804 ff_h263_decode_frame
,
805 CODEC_CAP_DRAW_HORIZ_BAND
| CODEC_CAP_DR1
,
806 .long_name
= NULL_IF_CONFIG_SMALL("Intel H.263"),
809 AVCodec flv_decoder
= {
813 sizeof(MpegEncContext
),
817 ff_h263_decode_frame
,
818 CODEC_CAP_DRAW_HORIZ_BAND
| CODEC_CAP_DR1
,
819 .long_name
= NULL_IF_CONFIG_SMALL("Flash Video"),