diff vp3.c @ 7966:14a49e087126 libavcodec

filter_limit_values only needs 7 bits, make its tables smaller
author conrad
date Wed, 01 Oct 2008 14:40:29 +0000
parents ef0616549c16
children 6ac2c8312a2b
line wrap: on
line diff
--- a/vp3.c	Wed Oct 01 12:48:26 2008 +0000
+++ b/vp3.c	Wed Oct 01 14:40:29 2008 +0000
@@ -230,7 +230,7 @@
     int huff_code_size;
     uint16_t huffman_table[80][32][2];
 
-    uint32_t filter_limit_values[64];
+    uint8_t filter_limit_values[64];
     int bounding_values_array[256];
 } Vp3DecodeContext;