diff options
author | Maarten Daniels <maarten.daniels@luc.ac.be> | 2004-11-12 01:21:34 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2004-11-12 01:21:34 +0000 |
commit | ccff9da62a833238db7a22eb39be0814f522c2c5 (patch) | |
tree | 993d69fc1faf714517204433764e238c6c006a18 /libavcodec/h261data.h | |
parent | 5b6d5596807e546d87f0afd1fb760b0f887b5c97 (diff) | |
download | ffmpeg-ccff9da62a833238db7a22eb39be0814f522c2c5.tar.gz |
H261 fixing and cleaning:
-corrected wrong value in mv data
-set correct mb_type after adjusting index
-don't use H263 loop filter when the loop filter flag is set but when
using the H261 encoder
-use the same unquantizer as H263 (which is optimized btw)
-removed unused members in H261Context
patch by (Maarten Daniels <maarten.daniels >at< luc >dot< ac >dot< be>)
regression test checksum update by me
Originally committed as revision 3669 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/h261data.h')
-rw-r--r-- | libavcodec/h261data.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/h261data.h b/libavcodec/h261data.h index 1e0e26368e..9ea991b237 100644 --- a/libavcodec/h261data.h +++ b/libavcodec/h261data.h @@ -67,7 +67,7 @@ const uint8_t h261_mv_tab[17][2] = { static const int mvmap[17] = { - 0, -1, -2, -3, -4, -5, -6, -7, -8, -9, -10, -11, -12, -13, -14, -15, 16 + 0, -1, -2, -3, -4, -5, -6, -7, -8, -9, -10, -11, -12, -13, -14, -15, -16 }; //H.261 VLC table for coded block pattern |