00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00027 #ifndef AVCODEC_RL_H
00028 #define AVCODEC_RL_H
00029
00030 #include <stdint.h>
00031 #include "get_bits.h"
00032
00033
00034 #define MAX_RUN 64
00035 #define MAX_LEVEL 64
00036
00038 typedef struct RLTable {
00039 int n;
00040 int last;
00041 const uint16_t (*table_vlc)[2];
00042 const int8_t *table_run;
00043 const int8_t *table_level;
00044 uint8_t *index_run[2];
00045 int8_t *max_level[2];
00046 int8_t *max_run[2];
00047 VLC vlc;
00048 RL_VLC_ELEM *rl_vlc[32];
00049 } RLTable;
00050
00056 void ff_init_rl(RLTable *rl, uint8_t static_store[2][2*MAX_RUN + MAX_LEVEL + 3]);
00057 void ff_init_vlc_rl(RLTable *rl);
00058
00059 #define INIT_VLC_RL(rl, static_size)\
00060 {\
00061 int q;\
00062 static RL_VLC_ELEM rl_vlc_table[32][static_size];\
00063 INIT_VLC_STATIC(&rl.vlc, 9, rl.n + 1,\
00064 &rl.table_vlc[0][1], 4, 2,\
00065 &rl.table_vlc[0][0], 4, 2, static_size);\
00066 \
00067 if(!rl.rl_vlc[0]){\
00068 for(q=0; q<32; q++)\
00069 rl.rl_vlc[q]= rl_vlc_table[q];\
00070 \
00071 ff_init_vlc_rl(&rl);\
00072 }\
00073 }
00074
00075 static inline int get_rl_index(const RLTable *rl, int last, int run, int level)
00076 {
00077 int index;
00078 index = rl->index_run[last][run];
00079 if (index >= rl->n)
00080 return rl->n;
00081 if (level > rl->max_level[last][run])
00082 return rl->n;
00083 return index + level - 1;
00084 }
00085
00086 #endif