diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2003-10-12 14:01:53 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2003-10-12 14:01:53 +0000 |
commit | 34790165dcdd438d9b12b78733740d240af56a65 (patch) | |
tree | b4421e0750540306810dce4dc805ece191fae7fe /libavcodec/mpeg4data.h | |
parent | 5e83dec46af77b13a562175f86cb342027af051d (diff) | |
download | ffmpeg-34790165dcdd438d9b12b78733740d240af56a65.tar.gz |
intra dc treshold != 0 decoding fixed
Originally committed as revision 2363 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/mpeg4data.h')
-rw-r--r-- | libavcodec/mpeg4data.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/libavcodec/mpeg4data.h b/libavcodec/mpeg4data.h index 8dc8c9deea..d48e874687 100644 --- a/libavcodec/mpeg4data.h +++ b/libavcodec/mpeg4data.h @@ -395,3 +395,7 @@ uint8_t ff_mpeg4_c_dc_scale_table[32]={ const uint16_t ff_mpeg4_resync_prefix[8]={ 0x7F00, 0x7E00, 0x7C00, 0x7800, 0x7000, 0x6000, 0x4000, 0x0000 }; + +static const uint8_t mpeg4_dc_threshold[8]={ + 99, 13, 15, 17, 19, 21, 23, 0 +}; |