diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2002-01-15 22:22:41 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2002-01-15 22:22:41 +0000 |
commit | ae40484c1ca6df311803f2061cda9f0b85c320f4 (patch) | |
tree | 18771503d845e2baf8ddbfade980ae557ebe2cf1 /libavcodec/msmpeg4.c | |
parent | 5975626d6f7cf3bb0df7aa5e8f2fcaecc03c3b38 (diff) | |
download | ffmpeg-ae40484c1ca6df311803f2061cda9f0b85c320f4.tar.gz |
(commit by michael)
bye bye weird al rounding bug ;)
Originally committed as revision 268 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/msmpeg4.c')
-rw-r--r-- | libavcodec/msmpeg4.c | 73 |
1 files changed, 67 insertions, 6 deletions
diff --git a/libavcodec/msmpeg4.c b/libavcodec/msmpeg4.c index d737bbca47..db767422dc 100644 --- a/libavcodec/msmpeg4.c +++ b/libavcodec/msmpeg4.c @@ -185,7 +185,12 @@ void msmpeg4_encode_picture_header(MpegEncContext * s, int picture_number) put_bits(&s->pb, 1, s->dc_table_index); put_bits(&s->pb, 1, s->mv_table_index); - s->no_rounding ^= 1; + + if(s->flipflop_rounding){ + s->no_rounding ^= 1; + }else{ + s->no_rounding = 0; + } } if (!init_done) { @@ -203,6 +208,27 @@ void msmpeg4_encode_picture_header(MpegEncContext * s, int picture_number) #endif } +void msmpeg4_encode_ext_header(MpegEncContext * s) +{ + if(s->pict_type == P_TYPE) + { + return; // P-Frames dont seem to have them and not even a 0 bit + } + else + { + s->flipflop_rounding=1; + s->bitrate= 910; + + put_bits(&s->pb, 1, 1); // ext header indicator + + put_bits(&s->pb, 4, 7); // ? + + put_bits(&s->pb, 11, s->bitrate); + + put_bits(&s->pb, 1, s->flipflop_rounding); + } +} + /* predict coded block */ static inline int coded_block_pred(MpegEncContext * s, int n, UINT8 **coded_block_ptr) { @@ -654,7 +680,6 @@ static int decode012(GetBitContext *gb) int msmpeg4_decode_picture_header(MpegEncContext * s) { int code; -static int weirdAl=0; s->pict_type = get_bits(&s->gb, 2) + 1; if (s->pict_type != I_TYPE && @@ -696,17 +721,53 @@ static int weirdAl=0; s->rl_chroma_table_index, s->dc_table_index, s->mv_table_index);*/ - if(weirdAl) - s->no_rounding = 0; - else - s->no_rounding ^= 1; + if(s->flipflop_rounding){ + s->no_rounding ^= 1; + }else{ + s->no_rounding = 0; + } +// printf("%d", s->no_rounding); } + + #ifdef DEBUG printf("*****frame %d:\n", frame_count++); #endif return 0; } +int msmpeg4_decode_ext_header(MpegEncContext * s, int buf_size) +{ + int firstBit=0; + + /* the alt_bitstream reader could read over the end so we need to check it */ + if(get_bits_count(&s->gb) < buf_size*8) firstBit= get_bits1(&s->gb); + + if(s->pict_type == P_TYPE) + { + if(firstBit) return -1; // havnt seen ext headers in P-Frames yet ;) + } + else + { + int unk; + if(!firstBit) // no header found + { + s->flipflop_rounding= 0; + s->bitrate= 0; + return 0; + } + + unk= get_bits(&s->gb, 4); + s->bitrate= get_bits(&s->gb, 11); + +// printf("%2d %4d ;; %1X\n", unk,s->bitrate, unk); + + s->flipflop_rounding= get_bits1(&s->gb); + } + + return 0; +} + void memsetw(short *tab, int val, int n) { int i; |