Mercurial > libavcodec.hg
annotate rl.h @ 11864:7204cb7dd601 libavcodec
Quant changes only once per MB so move the corresponding scale factor assignment
out of the block decoding loop. Indeo4 doesn't use any scale table but the quant
level itself as scale. Therefore access scale table only if its pointer != NULL.
author | maxim |
---|---|
date | Thu, 10 Jun 2010 17:31:12 +0000 |
parents | 7dd2a45249a9 |
children |
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 /** |
11644
7dd2a45249a9
Remove explicit filename from Doxygen @file commands.
diego
parents:
9428
diff
changeset
|
23 * @file |
4667 | 24 * rl header. |
1106 | 25 */ |
2967 | 26 |
7760 | 27 #ifndef AVCODEC_RL_H |
28 #define AVCODEC_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> |
9428 | 31 #include "get_bits.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]); | |
6940
778ecab25dd8
Change init_vlc_rl() so it does not use *alloc_static() anymore.
michael
parents:
6446
diff
changeset
|
57 void init_vlc_rl(RLTable *rl); |
778ecab25dd8
Change init_vlc_rl() so it does not use *alloc_static() anymore.
michael
parents:
6446
diff
changeset
|
58 |
778ecab25dd8
Change init_vlc_rl() so it does not use *alloc_static() anymore.
michael
parents:
6446
diff
changeset
|
59 #define INIT_VLC_RL(rl, static_size)\ |
778ecab25dd8
Change init_vlc_rl() so it does not use *alloc_static() anymore.
michael
parents:
6446
diff
changeset
|
60 {\ |
778ecab25dd8
Change init_vlc_rl() so it does not use *alloc_static() anymore.
michael
parents:
6446
diff
changeset
|
61 int q;\ |
778ecab25dd8
Change init_vlc_rl() so it does not use *alloc_static() anymore.
michael
parents:
6446
diff
changeset
|
62 static RL_VLC_ELEM rl_vlc_table[32][static_size];\ |
778ecab25dd8
Change init_vlc_rl() so it does not use *alloc_static() anymore.
michael
parents:
6446
diff
changeset
|
63 INIT_VLC_STATIC(&rl.vlc, 9, rl.n + 1,\ |
778ecab25dd8
Change init_vlc_rl() so it does not use *alloc_static() anymore.
michael
parents:
6446
diff
changeset
|
64 &rl.table_vlc[0][1], 4, 2,\ |
778ecab25dd8
Change init_vlc_rl() so it does not use *alloc_static() anymore.
michael
parents:
6446
diff
changeset
|
65 &rl.table_vlc[0][0], 4, 2, static_size);\ |
778ecab25dd8
Change init_vlc_rl() so it does not use *alloc_static() anymore.
michael
parents:
6446
diff
changeset
|
66 \ |
778ecab25dd8
Change init_vlc_rl() so it does not use *alloc_static() anymore.
michael
parents:
6446
diff
changeset
|
67 if(!rl.rl_vlc[0]){\ |
778ecab25dd8
Change init_vlc_rl() so it does not use *alloc_static() anymore.
michael
parents:
6446
diff
changeset
|
68 for(q=0; q<32; q++)\ |
778ecab25dd8
Change init_vlc_rl() so it does not use *alloc_static() anymore.
michael
parents:
6446
diff
changeset
|
69 rl.rl_vlc[q]= rl_vlc_table[q];\ |
778ecab25dd8
Change init_vlc_rl() so it does not use *alloc_static() anymore.
michael
parents:
6446
diff
changeset
|
70 \ |
778ecab25dd8
Change init_vlc_rl() so it does not use *alloc_static() anymore.
michael
parents:
6446
diff
changeset
|
71 init_vlc_rl(&rl);\ |
778ecab25dd8
Change init_vlc_rl() so it does not use *alloc_static() anymore.
michael
parents:
6446
diff
changeset
|
72 }\ |
778ecab25dd8
Change init_vlc_rl() so it does not use *alloc_static() anymore.
michael
parents:
6446
diff
changeset
|
73 } |
0 | 74 |
243 | 75 static inline int get_rl_index(const RLTable *rl, int last, int run, int level) |
0 | 76 { |
77 int index; | |
78 index = rl->index_run[last][run]; | |
79 if (index >= rl->n) | |
80 return rl->n; | |
81 if (level > rl->max_level[last][run]) | |
82 return rl->n; | |
83 return index + level - 1; | |
84 } | |
85 | |
7760 | 86 #endif /* AVCODEC_RL_H */ |