From 34790165dcdd438d9b12b78733740d240af56a65 Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Sun, 12 Oct 2003 14:01:53 +0000 Subject: intra dc treshold != 0 decoding fixed Originally committed as revision 2363 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/mpeg4data.h | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'libavcodec/mpeg4data.h') 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 +}; -- cgit v1.2.3