Mercurial > libavcodec.hg
annotate rl.h @ 5319:40af705cef7e libavcodec
AC-3 decoder, soc revision 69, Aug 31 07:12:56 2006 UTC by cloud9
Fix the bugs:
1. The quality of output because of incorrect windowing coefficients.
New code for window generation.
2. Dynrng values were reset where dynrng value is present in the first block,
but not in the subsequent block.
| author | jbr |
|---|---|
| date | Sat, 14 Jul 2007 16:03:14 +0000 |
| parents | 5e6d44208f91 |
| children | 1d83e9c34641 |
| 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 |
| 4667 | 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> |
| 31 #include "bitstream.h" | |
| 32 #include "mpegvideo.h" | |
| 33 | |
| 1110 | 34 /** RLTable. */ |
| 0 | 35 typedef struct RLTable { |
| 2967 | 36 int n; ///< number of entries of table_vlc minus 1 |
| 37 int last; ///< number of values for last = 0 | |
| 1064 | 38 const uint16_t (*table_vlc)[2]; |
| 39 const int8_t *table_run; | |
| 40 const int8_t *table_level; | |
| 2967 | 41 uint8_t *index_run[2]; ///< encoding only |
| 42 int8_t *max_level[2]; ///< encoding & decoding | |
| 43 int8_t *max_run[2]; ///< encoding & decoding | |
| 5269 | 44 VLC vlc; ///< decoding only deprecated FIXME remove |
| 2967 | 45 RL_VLC_ELEM *rl_vlc[32]; ///< decoding only |
| 0 | 46 } RLTable; |
| 47 | |
| 4668 | 48 /** |
| 49 * | |
| 50 * @param static_store static uint8_t array[2][2*MAX_RUN + MAX_LEVEL + 3] which will hold | |
| 51 * the level and run tables, if this is NULL av_malloc() will be used | |
| 52 */ | |
| 53 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
|
54 void init_vlc_rl(RLTable *rl, int use_static); |
| 0 | 55 |
| 243 | 56 static inline int get_rl_index(const RLTable *rl, int last, int run, int level) |
| 0 | 57 { |
| 58 int index; | |
| 59 index = rl->index_run[last][run]; | |
| 60 if (index >= rl->n) | |
| 61 return rl->n; | |
| 62 if (level > rl->max_level[last][run]) | |
| 63 return rl->n; | |
| 64 return index + level - 1; | |
| 65 } | |
| 66 | |
|
3582
6310389a9688
Compile fix (for GCC<3.3) when encoders are disabled
gpoirier
parents:
3312
diff
changeset
|
67 #endif |
