diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2003-09-27 00:01:46 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2003-09-27 00:01:46 +0000 |
commit | 8b76418a14d035df53e460e00d175be87a5cc332 (patch) | |
tree | caea0b5be117c35d42f9c917a5b4d1f770fd9afa | |
parent | 54324550b832375f9323ffddc864f6c4b6394140 (diff) | |
download | ffmpeg-8b76418a14d035df53e460e00d175be87a5cc332.tar.gz |
100l
Originally committed as revision 2305 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavcodec/h263.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/libavcodec/h263.c b/libavcodec/h263.c index 093aaedc80..c74bee8752 100644 --- a/libavcodec/h263.c +++ b/libavcodec/h263.c @@ -1583,6 +1583,7 @@ void h263_encode_init(MpegEncContext *s) s->ac_esc_length= 7+2+1+6+1+12+1; if(s->flags & CODEC_FLAG_GLOBAL_HEADER){ + s->avctx->extradata= av_malloc(1024); init_put_bits(&s->pb, s->avctx->extradata, 1024, NULL, NULL); @@ -2905,7 +2906,7 @@ static int mpeg4_decode_partition_a(MpegEncContext *s){ int16_t * const mot_val= s->motion_val[s->block_index[0]]; const int stride= s->block_wrap[0]*2; - do{ +// do{ //FIXME bits= show_bits(&s->gb, 17); if(bits==MOTION_MARKER){ return mb_num-1; @@ -2936,7 +2937,7 @@ static int mpeg4_decode_partition_a(MpegEncContext *s){ fprintf(stderr, "cbpc corrupted at %d %d\n", s->mb_x, s->mb_y); return -1; } - }while(cbpc == 20); +// }while(cbpc == 20); s->cbp_table[xy]= cbpc&(8+3); //8 is dquant |