summaryrefslogtreecommitdiff
path: root/libavcodec/h263.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2007-03-14 23:23:30 +0000
committerMichael Niedermayer <michaelni@gmx.at>2007-03-14 23:23:30 +0000
commit7ca6cc099c7e11413c4e95ca10cc2edbfe1052fd (patch)
treebf7a8dd4d2897774e67b826728016dccee441980 /libavcodec/h263.c
parentad73e79cab85ab553a5b26fa258ec5bdb8a63ab6 (diff)
10l for myself, fixing --disable-encoders
Originally committed as revision 8408 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/h263.c')
-rw-r--r--libavcodec/h263.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/h263.c b/libavcodec/h263.c
index ab662c457b..4db89e9700 100644
--- a/libavcodec/h263.c
+++ b/libavcodec/h263.c
@@ -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