]> rtime.felk.cvut.cz Git - frescor/ffmpeg.git/commitdiff
10l for myself, fixing --disable-encoders
authormichael <michael@9553f0bf-9b14-0410-a0b8-cfaf0461ba5b>
Wed, 14 Mar 2007 23:23:30 +0000 (23:23 +0000)
committermichael <michael@9553f0bf-9b14-0410-a0b8-cfaf0461ba5b>
Wed, 14 Mar 2007 23:23:30 +0000 (23:23 +0000)
git-svn-id: file:///var/local/repositories/ffmpeg/trunk@8408 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b

libavcodec/h263.c

index ab662c457b627e5aef5b45e7920b78ef8d1a92b1..4db89e970047f3c65465d14ff2f0d163aced79ba 100644 (file)
@@ -101,8 +101,6 @@ static uint8_t  uni_h263_inter_rl_len [64*64*2*2];
 //#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 @@ max run: 29/41
 */
 #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