# HG changeset patch # User michael # Date 1173914610 0 # Node ID 41fdd1901c182e949d6fc294f06a812da426ab66 # Parent 97e3364d267ad14a35e7054213f414bd857d26ad 10l for myself, fixing --disable-encoders diff -r 97e3364d267a -r 41fdd1901c18 h263.c --- 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