Mercurial > libavcodec.hg
annotate rl.h @ 6728:56c5bbd0996f libavcodec
split out some decoder context params to a shared macro
author | jbr |
---|---|
date | Fri, 02 May 2008 21:33:14 +0000 |
parents | 42fc209231cb |
children | 778ecab25dd8 |
rev | line source |
---|---|
5270
5e6d44208f91
Add standard licensing header to files that lack it.
diego
parents:
5269
diff
changeset
|
1 /* |
5e6d44208f91
Add standard licensing header to files that lack it.
diego
parents:
5269
diff
changeset
|
2 * Copyright (c) 2000-2002 Fabrice Bellard |
5e6d44208f91
Add standard licensing header to files that lack it.
diego
parents:
5269
diff
changeset
|
3 * Copyright (c) 2002-2004 Michael Niedermayer |
5e6d44208f91
Add standard licensing header to files that lack it.
diego
parents:
5269
diff
changeset
|
4 * |
5e6d44208f91
Add standard licensing header to files that lack it.
diego
parents:
5269
diff
changeset
|
5 * This file is part of FFmpeg. |
5e6d44208f91
Add standard licensing header to files that lack it.
diego
parents:
5269
diff
changeset
|
6 * |
5e6d44208f91
Add standard licensing header to files that lack it.
diego
parents:
5269
diff
changeset
|
7 * FFmpeg is free software; you can redistribute it and/or |
5e6d44208f91
Add standard licensing header to files that lack it.
diego
parents:
5269
diff
changeset
|
8 * modify it under the terms of the GNU Lesser General Public |
5e6d44208f91
Add standard licensing header to files that lack it.
diego
parents:
5269
diff
changeset
|
9 * License as published by the Free Software Foundation; either |
5e6d44208f91
Add standard licensing header to files that lack it.
diego
parents:
5269
diff
changeset
|
10 * version 2.1 of the License, or (at your option) any later version. |
5e6d44208f91
Add standard licensing header to files that lack it.
diego
parents:
5269
diff
changeset
|
11 * |
5e6d44208f91
Add standard licensing header to files that lack it.
diego
parents:
5269
diff
changeset
|
12 * FFmpeg is distributed in the hope that it will be useful, |
5e6d44208f91
Add standard licensing header to files that lack it.
diego
parents:
5269
diff
changeset
|
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
5e6d44208f91
Add standard licensing header to files that lack it.
diego
parents:
5269
diff
changeset
|
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
5e6d44208f91
Add standard licensing header to files that lack it.
diego
parents:
5269
diff
changeset
|
15 * Lesser General Public License for more details. |
5e6d44208f91
Add standard licensing header to files that lack it.
diego
parents:
5269
diff
changeset
|
16 * |
5e6d44208f91
Add standard licensing header to files that lack it.
diego
parents:
5269
diff
changeset
|
17 * You should have received a copy of the GNU Lesser General Public |
5e6d44208f91
Add standard licensing header to files that lack it.
diego
parents:
5269
diff
changeset
|
18 * License along with FFmpeg; if not, write to the Free Software |
5e6d44208f91
Add standard licensing header to files that lack it.
diego
parents:
5269
diff
changeset
|
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA |
5e6d44208f91
Add standard licensing header to files that lack it.
diego
parents:
5269
diff
changeset
|
20 */ |
5e6d44208f91
Add standard licensing header to files that lack it.
diego
parents:
5269
diff
changeset
|
21 |
1106 | 22 /** |
4667 | 23 * @file rl.h |
24 * rl header. | |
1106 | 25 */ |
2967 | 26 |
5830
1d83e9c34641
Add FFMPEG_ prefix to all multiple inclusion guards.
diego
parents:
5270
diff
changeset
|
27 #ifndef FFMPEG_RL_H |
1d83e9c34641
Add FFMPEG_ prefix to all multiple inclusion guards.
diego
parents:
5270
diff
changeset
|
28 #define FFMPEG_RL_H |
745
25d7fb7c89be
better/cleaner error resilience (done in a 2nd pass after decoding)
michaelni
parents:
726
diff
changeset
|
29 |
5162 | 30 #include <stdint.h> |
31 #include "bitstream.h" | |
6446 | 32 |
33 /* run length table */ | |
34 #define MAX_RUN 64 | |
35 #define MAX_LEVEL 64 | |
5162 | 36 |
1110 | 37 /** RLTable. */ |
0 | 38 typedef struct RLTable { |
2967 | 39 int n; ///< number of entries of table_vlc minus 1 |
40 int last; ///< number of values for last = 0 | |
1064 | 41 const uint16_t (*table_vlc)[2]; |
42 const int8_t *table_run; | |
43 const int8_t *table_level; | |
2967 | 44 uint8_t *index_run[2]; ///< encoding only |
45 int8_t *max_level[2]; ///< encoding & decoding | |
46 int8_t *max_run[2]; ///< encoding & decoding | |
5269 | 47 VLC vlc; ///< decoding only deprecated FIXME remove |
2967 | 48 RL_VLC_ELEM *rl_vlc[32]; ///< decoding only |
0 | 49 } RLTable; |
50 | |
4668 | 51 /** |
52 * | |
53 * @param static_store static uint8_t array[2][2*MAX_RUN + MAX_LEVEL + 3] which will hold | |
54 * the level and run tables, if this is NULL av_malloc() will be used | |
55 */ | |
56 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
|
57 void init_vlc_rl(RLTable *rl, int use_static); |
0 | 58 |
243 | 59 static inline int get_rl_index(const RLTable *rl, int last, int run, int level) |
0 | 60 { |
61 int index; | |
62 index = rl->index_run[last][run]; | |
63 if (index >= rl->n) | |
64 return rl->n; | |
65 if (level > rl->max_level[last][run]) | |
66 return rl->n; | |
67 return index + level - 1; | |
68 } | |
69 | |
5830
1d83e9c34641
Add FFMPEG_ prefix to all multiple inclusion guards.
diego
parents:
5270
diff
changeset
|
70 #endif /* FFMPEG_RL_H */ |