diff mpeg4data.h @ 1520:ad5461bad820 libavcodec

intra dc treshold != 0 decoding fixed
author michael
date Sun, 12 Oct 2003 14:01:53 +0000
parents 89e6c3ce263a
children dd544554ed42
line wrap: on
line diff
--- a/mpeg4data.h	Sat Oct 11 21:49:10 2003 +0000
+++ b/mpeg4data.h	Sun Oct 12 14:01:53 2003 +0000
@@ -395,3 +395,7 @@
 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
+};