Mercurial > libavcodec.hg
annotate rl.h @ 5197:953a9fd3b5f5 libavcodec
Ignore .ho files.
author | diego |
---|---|
date | Mon, 02 Jul 2007 10:13:19 +0000 |
parents | 4394344397d8 |
children | e0e53ab5a77a |
rev | line source |
---|---|
1106 | 1 /** |
4667 | 2 * @file rl.h |
3 * rl header. | |
1106 | 4 */ |
2967 | 5 |
4667 | 6 #ifndef AVCODEC_RL_H |
7 #define AVCODEC_RL_H | |
745
25d7fb7c89be
better/cleaner error resilience (done in a 2nd pass after decoding)
michaelni
parents:
726
diff
changeset
|
8 |
5162 | 9 #include <stdint.h> |
10 #include "bitstream.h" | |
11 #include "mpegvideo.h" | |
12 | |
1110 | 13 /** RLTable. */ |
0 | 14 typedef struct RLTable { |
2967 | 15 int n; ///< number of entries of table_vlc minus 1 |
16 int last; ///< number of values for last = 0 | |
1064 | 17 const uint16_t (*table_vlc)[2]; |
18 const int8_t *table_run; | |
19 const int8_t *table_level; | |
2967 | 20 uint8_t *index_run[2]; ///< encoding only |
21 int8_t *max_level[2]; ///< encoding & decoding | |
22 int8_t *max_run[2]; ///< encoding & decoding | |
1110 | 23 VLC vlc; ///< decoding only deprected FIXME remove |
2967 | 24 RL_VLC_ELEM *rl_vlc[32]; ///< decoding only |
0 | 25 } RLTable; |
26 | |
4668 | 27 /** |
28 * | |
29 * @param static_store static uint8_t array[2][2*MAX_RUN + MAX_LEVEL + 3] which will hold | |
30 * the level and run tables, if this is NULL av_malloc() will be used | |
31 */ | |
32 void init_rl(RLTable *rl, uint8_t static_store[2][2*MAX_RUN + MAX_LEVEL + 3]); | |
2370
26560d4fdb1f
Memory leak fix patch by (Burkhard Plaum <plaum >at< ipf.uni-stuttgart )dot( de>)
michael
parents:
2327
diff
changeset
|
33 void init_vlc_rl(RLTable *rl, int use_static); |
0 | 34 |
243 | 35 static inline int get_rl_index(const RLTable *rl, int last, int run, int level) |
0 | 36 { |
37 int index; | |
38 index = rl->index_run[last][run]; | |
39 if (index >= rl->n) | |
40 return rl->n; | |
41 if (level > rl->max_level[last][run]) | |
42 return rl->n; | |
43 return index + level - 1; | |
44 } | |
45 | |
3582
6310389a9688
Compile fix (for GCC<3.3) when encoders are disabled
gpoirier
parents:
3312
diff
changeset
|
46 #endif |