diff h263.c @ 4672:41fdd1901c18 libavcodec

10l for myself, fixing --disable-encoders
author michael
date Wed, 14 Mar 2007 23:23:30 +0000
parents 1f1a0e67b961
children 655d25351bfc
line wrap: on
line diff
--- a/h263.c	Wed Mar 14 14:49:49 2007 +0000
+++ b/h263.c	Wed Mar 14 23:23:30 2007 +0000
@@ -101,8 +101,6 @@
 //#define UNI_MPEG4_ENC_INDEX(last,run,level) ((last)*128*64 + (run) + (level)*64)
 #define UNI_MPEG4_ENC_INDEX(last,run,level) ((last)*128*64 + (run)*128 + (level))
 
-static uint8_t static_rl_table_store[5][2][2*MAX_RUN + MAX_LEVEL + 3];
-
 /* mpeg4
 inter
 max level: 24/6
@@ -114,6 +112,8 @@
 */
 #endif
 
+static uint8_t static_rl_table_store[5][2][2*MAX_RUN + MAX_LEVEL + 3];
+
 #if 0 //3IV1 is quite rare and it slows things down a tiny bit
 #define IS_3IV1 s->codec_tag == ff_get_fourcc("3IV1")
 #else