Mercurial > libavcodec.hg
annotate cook.c @ 6859:2df67a1a76b7 libavcodec
Merge init_rootpow2table and init_pow2table.
| author | michael |
|---|---|
| date | Sat, 24 May 2008 22:23:16 +0000 |
| parents | f7cbb7733146 |
| children | 75aa9d6df9ac |
| rev | line source |
|---|---|
| 2956 | 1 /* |
| 2 * COOK compatible decoder | |
| 3 * Copyright (c) 2003 Sascha Sommer | |
| 4 * Copyright (c) 2005 Benjamin Larsson | |
| 5 * | |
|
3947
c8c591fe26f8
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
3619
diff
changeset
|
6 * This file is part of FFmpeg. |
|
c8c591fe26f8
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
3619
diff
changeset
|
7 * |
|
c8c591fe26f8
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
3619
diff
changeset
|
8 * FFmpeg is free software; you can redistribute it and/or |
| 2956 | 9 * modify it under the terms of the GNU Lesser General Public |
| 10 * License as published by the Free Software Foundation; either | |
|
3947
c8c591fe26f8
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
3619
diff
changeset
|
11 * version 2.1 of the License, or (at your option) any later version. |
| 2956 | 12 * |
|
3947
c8c591fe26f8
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
3619
diff
changeset
|
13 * FFmpeg is distributed in the hope that it will be useful, |
| 2956 | 14 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
| 16 * Lesser General Public License for more details. | |
| 17 * | |
| 18 * You should have received a copy of the GNU Lesser General Public | |
|
3947
c8c591fe26f8
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
3619
diff
changeset
|
19 * License along with FFmpeg; if not, write to the Free Software |
|
3036
0b546eab515d
Update licensing information: The FSF changed postal address.
diego
parents:
3019
diff
changeset
|
20 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA |
| 2956 | 21 */ |
| 22 | |
| 23 /** | |
| 24 * @file cook.c | |
|
4845
78bb9129231b
As usual Real actually took something existing and rebranded it.
banan
parents:
4692
diff
changeset
|
25 * Cook compatible decoder. Bastardization of the G.722.1 standard. |
| 2956 | 26 * This decoder handles RealNetworks, RealAudio G2 data. |
| 27 * Cook is identified by the codec name cook in RM files. | |
| 28 * | |
| 29 * To use this decoder, a calling application must supply the extradata | |
| 30 * bytes provided from the RM container; 8+ bytes for mono streams and | |
| 31 * 16+ for stereo streams (maybe more). | |
| 32 * | |
| 33 * Codec technicalities (all this assume a buffer length of 1024): | |
| 34 * Cook works with several different techniques to achieve its compression. | |
| 35 * In the timedomain the buffer is divided into 8 pieces and quantized. If | |
| 36 * two neighboring pieces have different quantization index a smooth | |
| 37 * quantization curve is used to get a smooth overlap between the different | |
| 38 * pieces. | |
| 39 * To get to the transformdomain Cook uses a modulated lapped transform. | |
| 40 * The transform domain has 50 subbands with 20 elements each. This | |
| 41 * means only a maximum of 50*20=1000 coefficients are used out of the 1024 | |
| 42 * available. | |
| 43 */ | |
| 44 | |
| 45 #include <math.h> | |
| 46 #include <stddef.h> | |
| 47 #include <stdio.h> | |
| 48 | |
| 6763 | 49 #include "libavutil/random.h" |
| 2956 | 50 #include "avcodec.h" |
| 51 #include "bitstream.h" | |
| 52 #include "dsputil.h" | |
|
4430
407e7fd9b4f4
Get rid of the COOKextradata struct. And use valid C to parse the extradata.
banan
parents:
4429
diff
changeset
|
53 #include "bytestream.h" |
| 2956 | 54 |
| 55 #include "cookdata.h" | |
| 56 | |
| 57 /* the different Cook versions */ | |
| 4425 | 58 #define MONO 0x1000001 |
| 59 #define STEREO 0x1000002 | |
| 2956 | 60 #define JOINT_STEREO 0x1000003 |
| 61 #define MC_COOK 0x2000000 //multichannel Cook, not supported | |
| 62 | |
| 63 #define SUBBAND_SIZE 20 | |
| 64 //#define COOKDEBUG | |
| 65 | |
| 66 typedef struct { | |
| 4639 | 67 int *now; |
| 68 int *previous; | |
| 69 } cook_gains; | |
| 2956 | 70 |
|
5346
b41036edcf2e
fixpoint: lowlevel functional abstraction for all buffer arithmetics
mhoffman
parents:
5345
diff
changeset
|
71 typedef struct cook { |
|
b41036edcf2e
fixpoint: lowlevel functional abstraction for all buffer arithmetics
mhoffman
parents:
5345
diff
changeset
|
72 /* |
|
b41036edcf2e
fixpoint: lowlevel functional abstraction for all buffer arithmetics
mhoffman
parents:
5345
diff
changeset
|
73 * The following 5 functions provide the lowlevel arithmetic on |
|
b41036edcf2e
fixpoint: lowlevel functional abstraction for all buffer arithmetics
mhoffman
parents:
5345
diff
changeset
|
74 * the internal audio buffers. |
|
b41036edcf2e
fixpoint: lowlevel functional abstraction for all buffer arithmetics
mhoffman
parents:
5345
diff
changeset
|
75 */ |
|
b41036edcf2e
fixpoint: lowlevel functional abstraction for all buffer arithmetics
mhoffman
parents:
5345
diff
changeset
|
76 void (* scalar_dequant)(struct cook *q, int index, int quant_index, |
|
b41036edcf2e
fixpoint: lowlevel functional abstraction for all buffer arithmetics
mhoffman
parents:
5345
diff
changeset
|
77 int* subband_coef_index, int* subband_coef_sign, |
|
b41036edcf2e
fixpoint: lowlevel functional abstraction for all buffer arithmetics
mhoffman
parents:
5345
diff
changeset
|
78 float* mlt_p); |
|
b41036edcf2e
fixpoint: lowlevel functional abstraction for all buffer arithmetics
mhoffman
parents:
5345
diff
changeset
|
79 |
|
b41036edcf2e
fixpoint: lowlevel functional abstraction for all buffer arithmetics
mhoffman
parents:
5345
diff
changeset
|
80 void (* decouple) (struct cook *q, |
|
b41036edcf2e
fixpoint: lowlevel functional abstraction for all buffer arithmetics
mhoffman
parents:
5345
diff
changeset
|
81 int subband, |
|
b41036edcf2e
fixpoint: lowlevel functional abstraction for all buffer arithmetics
mhoffman
parents:
5345
diff
changeset
|
82 float f1, float f2, |
|
b41036edcf2e
fixpoint: lowlevel functional abstraction for all buffer arithmetics
mhoffman
parents:
5345
diff
changeset
|
83 float *decode_buffer, |
|
b41036edcf2e
fixpoint: lowlevel functional abstraction for all buffer arithmetics
mhoffman
parents:
5345
diff
changeset
|
84 float *mlt_buffer1, float *mlt_buffer2); |
|
b41036edcf2e
fixpoint: lowlevel functional abstraction for all buffer arithmetics
mhoffman
parents:
5345
diff
changeset
|
85 |
|
b41036edcf2e
fixpoint: lowlevel functional abstraction for all buffer arithmetics
mhoffman
parents:
5345
diff
changeset
|
86 void (* imlt_window) (struct cook *q, float *buffer1, |
|
b41036edcf2e
fixpoint: lowlevel functional abstraction for all buffer arithmetics
mhoffman
parents:
5345
diff
changeset
|
87 cook_gains *gains_ptr, float *previous_buffer); |
|
b41036edcf2e
fixpoint: lowlevel functional abstraction for all buffer arithmetics
mhoffman
parents:
5345
diff
changeset
|
88 |
|
b41036edcf2e
fixpoint: lowlevel functional abstraction for all buffer arithmetics
mhoffman
parents:
5345
diff
changeset
|
89 void (* interpolate) (struct cook *q, float* buffer, |
|
b41036edcf2e
fixpoint: lowlevel functional abstraction for all buffer arithmetics
mhoffman
parents:
5345
diff
changeset
|
90 int gain_index, int gain_index_next); |
|
b41036edcf2e
fixpoint: lowlevel functional abstraction for all buffer arithmetics
mhoffman
parents:
5345
diff
changeset
|
91 |
|
b41036edcf2e
fixpoint: lowlevel functional abstraction for all buffer arithmetics
mhoffman
parents:
5345
diff
changeset
|
92 void (* saturate_output) (struct cook *q, int chan, int16_t *out); |
|
b41036edcf2e
fixpoint: lowlevel functional abstraction for all buffer arithmetics
mhoffman
parents:
5345
diff
changeset
|
93 |
| 2956 | 94 GetBitContext gb; |
| 95 /* stream data */ | |
| 96 int nb_channels; | |
| 97 int joint_stereo; | |
| 98 int bit_rate; | |
| 99 int sample_rate; | |
| 100 int samples_per_channel; | |
| 101 int samples_per_frame; | |
| 102 int subbands; | |
| 3090 | 103 int log2_numvector_size; |
| 104 int numvector_size; //1 << log2_numvector_size; | |
| 2956 | 105 int js_subband_start; |
| 106 int total_subbands; | |
| 107 int num_vectors; | |
| 108 int bits_per_subpacket; | |
|
4430
407e7fd9b4f4
Get rid of the COOKextradata struct. And use valid C to parse the extradata.
banan
parents:
4429
diff
changeset
|
109 int cookversion; |
| 2956 | 110 /* states */ |
|
4692
3318e3f6470f
Small simplifications to subband coefficient handling and use av_random().
banan
parents:
4674
diff
changeset
|
111 AVRandomState random_state; |
| 2956 | 112 |
| 113 /* transform data */ | |
|
4650
31bf54d9353d
Replace custom modified discrete cosine transform with ffmpeg's own.
banan
parents:
4639
diff
changeset
|
114 MDCTContext mdct_ctx; |
|
31bf54d9353d
Replace custom modified discrete cosine transform with ffmpeg's own.
banan
parents:
4639
diff
changeset
|
115 DECLARE_ALIGNED_16(FFTSample, mdct_tmp[1024]); /* temporary storage for imlt */ |
| 2956 | 116 float* mlt_window; |
| 117 | |
| 118 /* gain buffers */ | |
| 4639 | 119 cook_gains gains1; |
| 120 cook_gains gains2; | |
| 121 int gain_1[9]; | |
| 122 int gain_2[9]; | |
| 123 int gain_3[9]; | |
| 124 int gain_4[9]; | |
| 2956 | 125 |
| 126 /* VLC data */ | |
| 127 int js_vlc_bits; | |
| 128 VLC envelope_quant_index[13]; | |
| 129 VLC sqvh[7]; //scalar quantization | |
| 130 VLC ccpl; //channel coupling | |
| 131 | |
| 132 /* generatable tables and related variables */ | |
| 133 int gain_size_factor; | |
| 134 float gain_table[23]; | |
| 135 float pow2tab[127]; | |
| 136 float rootpow2tab[127]; | |
| 137 | |
| 138 /* data buffers */ | |
| 139 | |
| 140 uint8_t* decoded_bytes_buffer; | |
| 4542 | 141 DECLARE_ALIGNED_16(float,mono_mdct_output[2048]); |
| 2956 | 142 float mono_previous_buffer1[1024]; |
| 143 float mono_previous_buffer2[1024]; | |
| 144 float decode_buffer_1[1024]; | |
| 145 float decode_buffer_2[1024]; | |
|
5342
887509b42d3f
moving automatic allocation of joint_decode/decode_buffer
mhoffman
parents:
5341
diff
changeset
|
146 float decode_buffer_0[1060]; /* static allocation for joint decode */ |
|
5347
59ec490fe985
fixpoint: move cplscales to context structure and provide hook for data format conversion
mhoffman
parents:
5346
diff
changeset
|
147 |
|
6197
2ca0a91b0b24
add const, fix warning: cook.c:276: warning: passing argument 2 of 'maybe_reformat_buffer32' discards qualifiers from pointer target type
bcoudurier
parents:
5523
diff
changeset
|
148 const float *cplscales[5]; |
| 2956 | 149 } COOKContext; |
| 150 | |
| 151 /* debug functions */ | |
| 152 | |
| 153 #ifdef COOKDEBUG | |
| 154 static void dump_float_table(float* table, int size, int delimiter) { | |
| 155 int i=0; | |
| 156 av_log(NULL,AV_LOG_ERROR,"\n[%d]: ",i); | |
| 157 for (i=0 ; i<size ; i++) { | |
| 158 av_log(NULL, AV_LOG_ERROR, "%5.1f, ", table[i]); | |
| 159 if ((i+1)%delimiter == 0) av_log(NULL,AV_LOG_ERROR,"\n[%d]: ",i+1); | |
| 160 } | |
| 161 } | |
| 162 | |
| 163 static void dump_int_table(int* table, int size, int delimiter) { | |
| 164 int i=0; | |
| 165 av_log(NULL,AV_LOG_ERROR,"\n[%d]: ",i); | |
| 166 for (i=0 ; i<size ; i++) { | |
| 167 av_log(NULL, AV_LOG_ERROR, "%d, ", table[i]); | |
| 168 if ((i+1)%delimiter == 0) av_log(NULL,AV_LOG_ERROR,"\n[%d]: ",i+1); | |
| 169 } | |
| 170 } | |
| 171 | |
| 172 static void dump_short_table(short* table, int size, int delimiter) { | |
| 173 int i=0; | |
| 174 av_log(NULL,AV_LOG_ERROR,"\n[%d]: ",i); | |
| 175 for (i=0 ; i<size ; i++) { | |
| 176 av_log(NULL, AV_LOG_ERROR, "%d, ", table[i]); | |
| 177 if ((i+1)%delimiter == 0) av_log(NULL,AV_LOG_ERROR,"\n[%d]: ",i+1); | |
| 178 } | |
| 179 } | |
| 180 | |
| 181 #endif | |
| 182 | |
| 183 /*************** init functions ***************/ | |
| 184 | |
| 185 /* table generator */ | |
| 186 static void init_pow2table(COOKContext *q){ | |
| 187 int i; | |
| 6859 | 188 q->rootpow2tab[63] = |
| 2956 | 189 q->pow2tab[63] = 1.0; |
| 190 for (i=1 ; i<64 ; i++){ | |
|
3106
9cbd63cca826
Don't use pow/powf functions where we just need integer arithmetic.
al
parents:
3091
diff
changeset
|
191 q->pow2tab[63+i]=(float)((uint64_t)1<<i); |
|
9cbd63cca826
Don't use pow/powf functions where we just need integer arithmetic.
al
parents:
3091
diff
changeset
|
192 q->pow2tab[63-i]=1.0/(float)((uint64_t)1<<i); |
|
9cbd63cca826
Don't use pow/powf functions where we just need integer arithmetic.
al
parents:
3091
diff
changeset
|
193 q->rootpow2tab[63+i]=sqrt((float)((uint64_t)1<<i)); |
|
9cbd63cca826
Don't use pow/powf functions where we just need integer arithmetic.
al
parents:
3091
diff
changeset
|
194 q->rootpow2tab[63-i]=sqrt(1.0/(float)((uint64_t)1<<i)); |
| 2956 | 195 } |
| 196 } | |
| 197 | |
| 198 /* table generator */ | |
| 199 static void init_gain_table(COOKContext *q) { | |
| 200 int i; | |
| 201 q->gain_size_factor = q->samples_per_channel/8; | |
| 202 for (i=0 ; i<23 ; i++) { | |
| 203 q->gain_table[i] = pow((double)q->pow2tab[i+52] , | |
| 204 (1.0/(double)q->gain_size_factor)); | |
| 205 } | |
| 206 } | |
| 207 | |
| 208 | |
| 209 static int init_cook_vlc_tables(COOKContext *q) { | |
| 210 int i, result; | |
| 211 | |
| 212 result = 0; | |
| 213 for (i=0 ; i<13 ; i++) { | |
| 4951 | 214 result |= init_vlc (&q->envelope_quant_index[i], 9, 24, |
| 2956 | 215 envelope_quant_index_huffbits[i], 1, 1, |
| 216 envelope_quant_index_huffcodes[i], 2, 2, 0); | |
| 217 } | |
| 218 av_log(NULL,AV_LOG_DEBUG,"sqvh VLC init\n"); | |
| 219 for (i=0 ; i<7 ; i++) { | |
| 4951 | 220 result |= init_vlc (&q->sqvh[i], vhvlcsize_tab[i], vhsize_tab[i], |
| 2956 | 221 cvh_huffbits[i], 1, 1, |
| 222 cvh_huffcodes[i], 2, 2, 0); | |
| 223 } | |
| 224 | |
| 225 if (q->nb_channels==2 && q->joint_stereo==1){ | |
| 4951 | 226 result |= init_vlc (&q->ccpl, 6, (1<<q->js_vlc_bits)-1, |
| 2956 | 227 ccpl_huffbits[q->js_vlc_bits-2], 1, 1, |
| 228 ccpl_huffcodes[q->js_vlc_bits-2], 2, 2, 0); | |
| 229 av_log(NULL,AV_LOG_DEBUG,"Joint-stereo VLC used.\n"); | |
| 230 } | |
| 231 | |
| 232 av_log(NULL,AV_LOG_DEBUG,"VLC tables initialized.\n"); | |
| 233 return result; | |
| 234 } | |
| 235 | |
| 236 static int init_cook_mlt(COOKContext *q) { | |
| 237 int j; | |
| 238 float alpha; | |
|
4650
31bf54d9353d
Replace custom modified discrete cosine transform with ffmpeg's own.
banan
parents:
4639
diff
changeset
|
239 int mlt_size = q->samples_per_channel; |
| 2956 | 240 |
|
4650
31bf54d9353d
Replace custom modified discrete cosine transform with ffmpeg's own.
banan
parents:
4639
diff
changeset
|
241 if ((q->mlt_window = av_malloc(sizeof(float)*mlt_size)) == 0) |
|
31bf54d9353d
Replace custom modified discrete cosine transform with ffmpeg's own.
banan
parents:
4639
diff
changeset
|
242 return -1; |
| 2956 | 243 |
| 244 /* Initialize the MLT window: simple sine window. */ | |
|
4650
31bf54d9353d
Replace custom modified discrete cosine transform with ffmpeg's own.
banan
parents:
4639
diff
changeset
|
245 alpha = M_PI / (2.0 * (float)mlt_size); |
|
31bf54d9353d
Replace custom modified discrete cosine transform with ffmpeg's own.
banan
parents:
4639
diff
changeset
|
246 for(j=0 ; j<mlt_size ; j++) |
|
31bf54d9353d
Replace custom modified discrete cosine transform with ffmpeg's own.
banan
parents:
4639
diff
changeset
|
247 q->mlt_window[j] = sin((j + 0.5) * alpha) * sqrt(2.0 / q->samples_per_channel); |
| 2956 | 248 |
|
4650
31bf54d9353d
Replace custom modified discrete cosine transform with ffmpeg's own.
banan
parents:
4639
diff
changeset
|
249 /* Initialize the MDCT. */ |
|
31bf54d9353d
Replace custom modified discrete cosine transform with ffmpeg's own.
banan
parents:
4639
diff
changeset
|
250 if (ff_mdct_init(&q->mdct_ctx, av_log2(mlt_size)+1, 1)) { |
|
31bf54d9353d
Replace custom modified discrete cosine transform with ffmpeg's own.
banan
parents:
4639
diff
changeset
|
251 av_free(q->mlt_window); |
|
31bf54d9353d
Replace custom modified discrete cosine transform with ffmpeg's own.
banan
parents:
4639
diff
changeset
|
252 return -1; |
| 2956 | 253 } |
|
4650
31bf54d9353d
Replace custom modified discrete cosine transform with ffmpeg's own.
banan
parents:
4639
diff
changeset
|
254 av_log(NULL,AV_LOG_DEBUG,"MDCT initialized, order = %d.\n", |
|
31bf54d9353d
Replace custom modified discrete cosine transform with ffmpeg's own.
banan
parents:
4639
diff
changeset
|
255 av_log2(mlt_size)+1); |
| 2956 | 256 |
|
4650
31bf54d9353d
Replace custom modified discrete cosine transform with ffmpeg's own.
banan
parents:
4639
diff
changeset
|
257 return 0; |
| 2956 | 258 } |
| 259 | |
|
6197
2ca0a91b0b24
add const, fix warning: cook.c:276: warning: passing argument 2 of 'maybe_reformat_buffer32' discards qualifiers from pointer target type
bcoudurier
parents:
5523
diff
changeset
|
260 static const float *maybe_reformat_buffer32 (COOKContext *q, const float *ptr, int n) |
|
5347
59ec490fe985
fixpoint: move cplscales to context structure and provide hook for data format conversion
mhoffman
parents:
5346
diff
changeset
|
261 { |
|
59ec490fe985
fixpoint: move cplscales to context structure and provide hook for data format conversion
mhoffman
parents:
5346
diff
changeset
|
262 if (1) |
|
59ec490fe985
fixpoint: move cplscales to context structure and provide hook for data format conversion
mhoffman
parents:
5346
diff
changeset
|
263 return ptr; |
|
59ec490fe985
fixpoint: move cplscales to context structure and provide hook for data format conversion
mhoffman
parents:
5346
diff
changeset
|
264 } |
|
59ec490fe985
fixpoint: move cplscales to context structure and provide hook for data format conversion
mhoffman
parents:
5346
diff
changeset
|
265 |
| 5507 | 266 static void init_cplscales_table (COOKContext *q) { |
|
5347
59ec490fe985
fixpoint: move cplscales to context structure and provide hook for data format conversion
mhoffman
parents:
5346
diff
changeset
|
267 int i; |
|
59ec490fe985
fixpoint: move cplscales to context structure and provide hook for data format conversion
mhoffman
parents:
5346
diff
changeset
|
268 for (i=0;i<5;i++) |
|
59ec490fe985
fixpoint: move cplscales to context structure and provide hook for data format conversion
mhoffman
parents:
5346
diff
changeset
|
269 q->cplscales[i] = maybe_reformat_buffer32 (q, cplscales[i], (1<<(i+2))-1); |
|
59ec490fe985
fixpoint: move cplscales to context structure and provide hook for data format conversion
mhoffman
parents:
5346
diff
changeset
|
270 } |
|
59ec490fe985
fixpoint: move cplscales to context structure and provide hook for data format conversion
mhoffman
parents:
5346
diff
changeset
|
271 |
| 2956 | 272 /*************** init functions end ***********/ |
| 273 | |
| 274 /** | |
| 275 * Cook indata decoding, every 32 bits are XORed with 0x37c511f2. | |
| 276 * Why? No idea, some checksum/error detection method maybe. | |
|
4424
8c830bde8006
Cook stereo (MONO_COOK2) bugfix, by Ian Braithwaite.
banan
parents:
4423
diff
changeset
|
277 * |
|
8c830bde8006
Cook stereo (MONO_COOK2) bugfix, by Ian Braithwaite.
banan
parents:
4423
diff
changeset
|
278 * Out buffer size: extra bytes are needed to cope with |
| 5408 | 279 * padding/misalignment. |
|
4424
8c830bde8006
Cook stereo (MONO_COOK2) bugfix, by Ian Braithwaite.
banan
parents:
4423
diff
changeset
|
280 * Subpackets passed to the decoder can contain two, consecutive |
|
8c830bde8006
Cook stereo (MONO_COOK2) bugfix, by Ian Braithwaite.
banan
parents:
4423
diff
changeset
|
281 * half-subpackets, of identical but arbitrary size. |
|
8c830bde8006
Cook stereo (MONO_COOK2) bugfix, by Ian Braithwaite.
banan
parents:
4423
diff
changeset
|
282 * 1234 1234 1234 1234 extraA extraB |
|
8c830bde8006
Cook stereo (MONO_COOK2) bugfix, by Ian Braithwaite.
banan
parents:
4423
diff
changeset
|
283 * Case 1: AAAA BBBB 0 0 |
|
8c830bde8006
Cook stereo (MONO_COOK2) bugfix, by Ian Braithwaite.
banan
parents:
4423
diff
changeset
|
284 * Case 2: AAAA ABBB BB-- 3 3 |
|
8c830bde8006
Cook stereo (MONO_COOK2) bugfix, by Ian Braithwaite.
banan
parents:
4423
diff
changeset
|
285 * Case 3: AAAA AABB BBBB 2 2 |
|
8c830bde8006
Cook stereo (MONO_COOK2) bugfix, by Ian Braithwaite.
banan
parents:
4423
diff
changeset
|
286 * Case 4: AAAA AAAB BBBB BB-- 1 5 |
|
8c830bde8006
Cook stereo (MONO_COOK2) bugfix, by Ian Braithwaite.
banan
parents:
4423
diff
changeset
|
287 * |
| 2956 | 288 * Nice way to waste CPU cycles. |
| 289 * | |
|
4424
8c830bde8006
Cook stereo (MONO_COOK2) bugfix, by Ian Braithwaite.
banan
parents:
4423
diff
changeset
|
290 * @param inbuffer pointer to byte array of indata |
|
8c830bde8006
Cook stereo (MONO_COOK2) bugfix, by Ian Braithwaite.
banan
parents:
4423
diff
changeset
|
291 * @param out pointer to byte array of outdata |
|
8c830bde8006
Cook stereo (MONO_COOK2) bugfix, by Ian Braithwaite.
banan
parents:
4423
diff
changeset
|
292 * @param bytes number of bytes |
| 2956 | 293 */ |
|
4424
8c830bde8006
Cook stereo (MONO_COOK2) bugfix, by Ian Braithwaite.
banan
parents:
4423
diff
changeset
|
294 #define DECODE_BYTES_PAD1(bytes) (3 - ((bytes)+3) % 4) |
|
8c830bde8006
Cook stereo (MONO_COOK2) bugfix, by Ian Braithwaite.
banan
parents:
4423
diff
changeset
|
295 #define DECODE_BYTES_PAD2(bytes) ((bytes) % 4 + DECODE_BYTES_PAD1(2 * (bytes))) |
| 2956 | 296 |
| 6232 | 297 static inline int decode_bytes(const uint8_t* inbuffer, uint8_t* out, int bytes){ |
|
4424
8c830bde8006
Cook stereo (MONO_COOK2) bugfix, by Ian Braithwaite.
banan
parents:
4423
diff
changeset
|
298 int i, off; |
|
8c830bde8006
Cook stereo (MONO_COOK2) bugfix, by Ian Braithwaite.
banan
parents:
4423
diff
changeset
|
299 uint32_t c; |
| 6232 | 300 const uint32_t* buf; |
| 2956 | 301 uint32_t* obuf = (uint32_t*) out; |
| 302 /* FIXME: 64 bit platforms would be able to do 64 bits at a time. | |
| 303 * I'm too lazy though, should be something like | |
| 304 * for(i=0 ; i<bitamount/64 ; i++) | |
| 305 * (int64_t)out[i] = 0x37c511f237c511f2^be2me_64(int64_t)in[i]); | |
| 306 * Buffer alignment needs to be checked. */ | |
| 307 | |
| 4429 | 308 off = (int)((long)inbuffer & 3); |
| 6232 | 309 buf = (const uint32_t*) (inbuffer - off); |
|
4424
8c830bde8006
Cook stereo (MONO_COOK2) bugfix, by Ian Braithwaite.
banan
parents:
4423
diff
changeset
|
310 c = be2me_32((0x37c511f2 >> (off*8)) | (0x37c511f2 << (32-(off*8)))); |
|
8c830bde8006
Cook stereo (MONO_COOK2) bugfix, by Ian Braithwaite.
banan
parents:
4423
diff
changeset
|
311 bytes += 3 + off; |
|
8c830bde8006
Cook stereo (MONO_COOK2) bugfix, by Ian Braithwaite.
banan
parents:
4423
diff
changeset
|
312 for (i = 0; i < bytes/4; i++) |
|
8c830bde8006
Cook stereo (MONO_COOK2) bugfix, by Ian Braithwaite.
banan
parents:
4423
diff
changeset
|
313 obuf[i] = c ^ buf[i]; |
| 2956 | 314 |
|
4424
8c830bde8006
Cook stereo (MONO_COOK2) bugfix, by Ian Braithwaite.
banan
parents:
4423
diff
changeset
|
315 return off; |
| 2956 | 316 } |
| 317 | |
| 318 /** | |
| 319 * Cook uninit | |
| 320 */ | |
| 321 | |
| 322 static int cook_decode_close(AVCodecContext *avctx) | |
| 323 { | |
| 324 int i; | |
| 325 COOKContext *q = avctx->priv_data; | |
|
4302
a0f83004d485
av_log(NULL,... -> av_log(avctx,.. where appropriate.
banan
parents:
3947
diff
changeset
|
326 av_log(avctx,AV_LOG_DEBUG, "Deallocating memory.\n"); |
| 2956 | 327 |
| 328 /* Free allocated memory buffers. */ | |
| 329 av_free(q->mlt_window); | |
| 330 av_free(q->decoded_bytes_buffer); | |
| 331 | |
| 332 /* Free the transform. */ | |
|
4650
31bf54d9353d
Replace custom modified discrete cosine transform with ffmpeg's own.
banan
parents:
4639
diff
changeset
|
333 ff_mdct_end(&q->mdct_ctx); |
| 2956 | 334 |
| 335 /* Free the VLC tables. */ | |
| 336 for (i=0 ; i<13 ; i++) { | |
| 337 free_vlc(&q->envelope_quant_index[i]); | |
| 338 } | |
| 339 for (i=0 ; i<7 ; i++) { | |
| 340 free_vlc(&q->sqvh[i]); | |
| 341 } | |
| 342 if(q->nb_channels==2 && q->joint_stereo==1 ){ | |
| 343 free_vlc(&q->ccpl); | |
| 344 } | |
| 345 | |
| 346 av_log(NULL,AV_LOG_DEBUG,"Memory deallocated.\n"); | |
| 347 | |
| 348 return 0; | |
| 349 } | |
| 350 | |
| 351 /** | |
| 4639 | 352 * Fill the gain array for the timedomain quantization. |
| 2956 | 353 * |
| 354 * @param q pointer to the COOKContext | |
| 4639 | 355 * @param gaininfo[9] array of gain indices |
| 2956 | 356 */ |
| 357 | |
| 4639 | 358 static void decode_gain_info(GetBitContext *gb, int *gaininfo) |
| 359 { | |
| 360 int i, n; | |
| 2956 | 361 |
| 362 while (get_bits1(gb)) {} | |
| 4639 | 363 n = get_bits_count(gb) - 1; //amount of elements*2 to update |
| 2956 | 364 |
| 4639 | 365 i = 0; |
| 366 while (n--) { | |
| 367 int index = get_bits(gb, 3); | |
| 368 int gain = get_bits1(gb) ? get_bits(gb, 4) - 7 : -1; | |
| 369 | |
| 370 while (i <= index) gaininfo[i++] = gain; | |
| 2956 | 371 } |
| 4639 | 372 while (i <= 8) gaininfo[i++] = 0; |
| 2956 | 373 } |
| 374 | |
| 375 /** | |
| 376 * Create the quant index table needed for the envelope. | |
| 377 * | |
| 378 * @param q pointer to the COOKContext | |
| 379 * @param quant_index_table pointer to the array | |
| 380 */ | |
| 381 | |
| 382 static void decode_envelope(COOKContext *q, int* quant_index_table) { | |
| 383 int i,j, vlc_index; | |
| 384 | |
| 385 quant_index_table[0]= get_bits(&q->gb,6) - 6; //This is used later in categorize | |
| 386 | |
| 387 for (i=1 ; i < q->total_subbands ; i++){ | |
| 388 vlc_index=i; | |
| 389 if (i >= q->js_subband_start * 2) { | |
| 390 vlc_index-=q->js_subband_start; | |
| 391 } else { | |
| 392 vlc_index/=2; | |
| 393 if(vlc_index < 1) vlc_index = 1; | |
| 394 } | |
| 395 if (vlc_index>13) vlc_index = 13; //the VLC tables >13 are identical to No. 13 | |
| 396 | |
| 397 j = get_vlc2(&q->gb, q->envelope_quant_index[vlc_index-1].table, | |
| 398 q->envelope_quant_index[vlc_index-1].bits,2); | |
| 399 quant_index_table[i] = quant_index_table[i-1] + j - 12; //differential encoding | |
| 400 } | |
| 401 } | |
| 402 | |
| 403 /** | |
| 404 * Calculate the category and category_index vector. | |
| 405 * | |
| 406 * @param q pointer to the COOKContext | |
| 407 * @param quant_index_table pointer to the array | |
| 408 * @param category pointer to the category array | |
| 409 * @param category_index pointer to the category_index array | |
| 410 */ | |
| 411 | |
| 412 static void categorize(COOKContext *q, int* quant_index_table, | |
| 413 int* category, int* category_index){ | |
|
4952
1900e2eaecda
Add another tmpbias variable, as bias' value will be used later
ramiro
parents:
4951
diff
changeset
|
414 int exp_idx, bias, tmpbias1, tmpbias2, bits_left, num_bits, index, v, i, j; |
| 2956 | 415 int exp_index2[102]; |
| 416 int exp_index1[102]; | |
| 417 | |
|
4955
bbe763044678
Use 1 array with double the size instead of 2 arrays with normal size
ramiro
parents:
4954
diff
changeset
|
418 int tmp_categorize_array[128*2]; |
|
bbe763044678
Use 1 array with double the size instead of 2 arrays with normal size
ramiro
parents:
4954
diff
changeset
|
419 int tmp_categorize_array1_idx=q->numvector_size; |
|
bbe763044678
Use 1 array with double the size instead of 2 arrays with normal size
ramiro
parents:
4954
diff
changeset
|
420 int tmp_categorize_array2_idx=q->numvector_size; |
| 2956 | 421 |
| 422 bits_left = q->bits_per_subpacket - get_bits_count(&q->gb); | |
| 423 | |
| 424 if(bits_left > q->samples_per_channel) { | |
| 425 bits_left = q->samples_per_channel + | |
| 426 ((bits_left - q->samples_per_channel)*5)/8; | |
| 427 //av_log(NULL, AV_LOG_ERROR, "bits_left = %d\n",bits_left); | |
| 428 } | |
| 429 | |
| 430 memset(&exp_index1,0,102*sizeof(int)); | |
| 431 memset(&exp_index2,0,102*sizeof(int)); | |
|
4955
bbe763044678
Use 1 array with double the size instead of 2 arrays with normal size
ramiro
parents:
4954
diff
changeset
|
432 memset(&tmp_categorize_array,0,128*2*sizeof(int)); |
| 2956 | 433 |
| 434 bias=-32; | |
| 435 | |
| 436 /* Estimate bias. */ | |
| 437 for (i=32 ; i>0 ; i=i/2){ | |
| 438 num_bits = 0; | |
| 439 index = 0; | |
| 440 for (j=q->total_subbands ; j>0 ; j--){ | |
| 4863 | 441 exp_idx = av_clip((i - quant_index_table[index] + bias) / 2, 0, 7); |
| 2956 | 442 index++; |
| 443 num_bits+=expbits_tab[exp_idx]; | |
| 444 } | |
| 445 if(num_bits >= bits_left - 32){ | |
| 446 bias+=i; | |
| 447 } | |
| 448 } | |
| 449 | |
| 450 /* Calculate total number of bits. */ | |
| 451 num_bits=0; | |
| 452 for (i=0 ; i<q->total_subbands ; i++) { | |
| 4863 | 453 exp_idx = av_clip((bias - quant_index_table[i]) / 2, 0, 7); |
| 2956 | 454 num_bits += expbits_tab[exp_idx]; |
| 455 exp_index1[i] = exp_idx; | |
| 456 exp_index2[i] = exp_idx; | |
| 457 } | |
|
4952
1900e2eaecda
Add another tmpbias variable, as bias' value will be used later
ramiro
parents:
4951
diff
changeset
|
458 tmpbias1 = tmpbias2 = num_bits; |
| 2956 | 459 |
| 460 for (j = 1 ; j < q->numvector_size ; j++) { | |
|
4952
1900e2eaecda
Add another tmpbias variable, as bias' value will be used later
ramiro
parents:
4951
diff
changeset
|
461 if (tmpbias1 + tmpbias2 > 2*bits_left) { /* ---> */ |
| 2956 | 462 int max = -999999; |
| 463 index=-1; | |
| 464 for (i=0 ; i<q->total_subbands ; i++){ | |
| 465 if (exp_index1[i] < 7) { | |
|
4954
1fd90978db25
Add bias instead of -32 or 0, as is done in g.722.1
ramiro
parents:
4953
diff
changeset
|
466 v = (-2*exp_index1[i]) - quant_index_table[i] + bias; |
| 2956 | 467 if ( v >= max) { |
| 468 max = v; | |
| 469 index = i; | |
| 470 } | |
| 471 } | |
| 472 } | |
| 473 if(index==-1)break; | |
|
4955
bbe763044678
Use 1 array with double the size instead of 2 arrays with normal size
ramiro
parents:
4954
diff
changeset
|
474 tmp_categorize_array[tmp_categorize_array1_idx++] = index; |
|
4952
1900e2eaecda
Add another tmpbias variable, as bias' value will be used later
ramiro
parents:
4951
diff
changeset
|
475 tmpbias1 -= expbits_tab[exp_index1[index]] - |
| 4953 | 476 expbits_tab[exp_index1[index]+1]; |
| 2956 | 477 ++exp_index1[index]; |
| 478 } else { /* <--- */ | |
| 479 int min = 999999; | |
| 480 index=-1; | |
| 481 for (i=0 ; i<q->total_subbands ; i++){ | |
| 482 if(exp_index2[i] > 0){ | |
|
4954
1fd90978db25
Add bias instead of -32 or 0, as is done in g.722.1
ramiro
parents:
4953
diff
changeset
|
483 v = (-2*exp_index2[i])-quant_index_table[i]+bias; |
| 2956 | 484 if ( v < min) { |
| 485 min = v; | |
| 486 index = i; | |
| 487 } | |
| 488 } | |
| 489 } | |
| 490 if(index == -1)break; | |
|
4955
bbe763044678
Use 1 array with double the size instead of 2 arrays with normal size
ramiro
parents:
4954
diff
changeset
|
491 tmp_categorize_array[--tmp_categorize_array2_idx] = index; |
|
4952
1900e2eaecda
Add another tmpbias variable, as bias' value will be used later
ramiro
parents:
4951
diff
changeset
|
492 tmpbias2 -= expbits_tab[exp_index2[index]] - |
| 4953 | 493 expbits_tab[exp_index2[index]-1]; |
| 2956 | 494 --exp_index2[index]; |
| 495 } | |
| 496 } | |
| 497 | |
| 498 for(i=0 ; i<q->total_subbands ; i++) | |
| 499 category[i] = exp_index2[i]; | |
| 500 | |
|
4955
bbe763044678
Use 1 array with double the size instead of 2 arrays with normal size
ramiro
parents:
4954
diff
changeset
|
501 for(i=0 ; i<q->numvector_size-1 ; i++) |
|
bbe763044678
Use 1 array with double the size instead of 2 arrays with normal size
ramiro
parents:
4954
diff
changeset
|
502 category_index[i] = tmp_categorize_array[tmp_categorize_array2_idx++]; |
| 2956 | 503 |
| 504 } | |
| 505 | |
| 506 | |
| 507 /** | |
| 508 * Expand the category vector. | |
| 509 * | |
| 510 * @param q pointer to the COOKContext | |
| 511 * @param category pointer to the category array | |
| 512 * @param category_index pointer to the category_index array | |
| 513 */ | |
| 514 | |
|
4908
777f250df232
Fix multiple "?inline/static? is not at beginning of declaration" warnings.
diego
parents:
4863
diff
changeset
|
515 static inline void expand_category(COOKContext *q, int* category, |
| 2956 | 516 int* category_index){ |
| 517 int i; | |
| 518 for(i=0 ; i<q->num_vectors ; i++){ | |
| 519 ++category[category_index[i]]; | |
| 520 } | |
| 521 } | |
| 522 | |
| 523 /** | |
| 524 * The real requantization of the mltcoefs | |
| 525 * | |
| 526 * @param q pointer to the COOKContext | |
| 527 * @param index index | |
|
4692
3318e3f6470f
Small simplifications to subband coefficient handling and use av_random().
banan
parents:
4674
diff
changeset
|
528 * @param quant_index quantisation index |
| 2956 | 529 * @param subband_coef_index array of indexes to quant_centroid_tab |
| 4674 | 530 * @param subband_coef_sign signs of coefficients |
|
4692
3318e3f6470f
Small simplifications to subband coefficient handling and use av_random().
banan
parents:
4674
diff
changeset
|
531 * @param mlt_p pointer into the mlt buffer |
| 2956 | 532 */ |
| 533 | |
|
5353
7e4703e16bbd
fixpoint: renaming all lowlevel arithmetic routines to xxx_float
mhoffman
parents:
5350
diff
changeset
|
534 static void scalar_dequant_float(COOKContext *q, int index, int quant_index, |
|
4692
3318e3f6470f
Small simplifications to subband coefficient handling and use av_random().
banan
parents:
4674
diff
changeset
|
535 int* subband_coef_index, int* subband_coef_sign, |
|
3318e3f6470f
Small simplifications to subband coefficient handling and use av_random().
banan
parents:
4674
diff
changeset
|
536 float* mlt_p){ |
| 2956 | 537 int i; |
| 538 float f1; | |
| 539 | |
| 540 for(i=0 ; i<SUBBAND_SIZE ; i++) { | |
| 541 if (subband_coef_index[i]) { | |
|
4692
3318e3f6470f
Small simplifications to subband coefficient handling and use av_random().
banan
parents:
4674
diff
changeset
|
542 f1 = quant_centroid_tab[index][subband_coef_index[i]]; |
|
3318e3f6470f
Small simplifications to subband coefficient handling and use av_random().
banan
parents:
4674
diff
changeset
|
543 if (subband_coef_sign[i]) f1 = -f1; |
| 2956 | 544 } else { |
| 4674 | 545 /* noise coding if subband_coef_index[i] == 0 */ |
|
4692
3318e3f6470f
Small simplifications to subband coefficient handling and use av_random().
banan
parents:
4674
diff
changeset
|
546 f1 = dither_tab[index]; |
|
3318e3f6470f
Small simplifications to subband coefficient handling and use av_random().
banan
parents:
4674
diff
changeset
|
547 if (av_random(&q->random_state) < 0x80000000) f1 = -f1; |
| 2956 | 548 } |
|
4692
3318e3f6470f
Small simplifications to subband coefficient handling and use av_random().
banan
parents:
4674
diff
changeset
|
549 mlt_p[i] = f1 * q->rootpow2tab[quant_index+63]; |
| 2956 | 550 } |
| 551 } | |
| 552 /** | |
| 4674 | 553 * Unpack the subband_coef_index and subband_coef_sign vectors. |
| 2956 | 554 * |
| 555 * @param q pointer to the COOKContext | |
| 556 * @param category pointer to the category array | |
| 557 * @param subband_coef_index array of indexes to quant_centroid_tab | |
| 4674 | 558 * @param subband_coef_sign signs of coefficients |
| 2956 | 559 */ |
| 560 | |
| 561 static int unpack_SQVH(COOKContext *q, int category, int* subband_coef_index, | |
| 4674 | 562 int* subband_coef_sign) { |
| 2956 | 563 int i,j; |
| 564 int vlc, vd ,tmp, result; | |
| 565 | |
| 566 vd = vd_tab[category]; | |
| 567 result = 0; | |
| 568 for(i=0 ; i<vpr_tab[category] ; i++){ | |
| 569 vlc = get_vlc2(&q->gb, q->sqvh[category].table, q->sqvh[category].bits, 3); | |
| 570 if (q->bits_per_subpacket < get_bits_count(&q->gb)){ | |
| 571 vlc = 0; | |
| 572 result = 1; | |
| 573 } | |
| 574 for(j=vd-1 ; j>=0 ; j--){ | |
| 575 tmp = (vlc * invradix_tab[category])/0x100000; | |
| 576 subband_coef_index[vd*i+j] = vlc - tmp * (kmax_tab[category]+1); | |
| 577 vlc = tmp; | |
| 578 } | |
| 579 for(j=0 ; j<vd ; j++){ | |
| 580 if (subband_coef_index[i*vd + j]) { | |
| 581 if(get_bits_count(&q->gb) < q->bits_per_subpacket){ | |
| 4674 | 582 subband_coef_sign[i*vd+j] = get_bits1(&q->gb); |
| 2956 | 583 } else { |
| 584 result=1; | |
| 4674 | 585 subband_coef_sign[i*vd+j]=0; |
| 2956 | 586 } |
| 587 } else { | |
| 4674 | 588 subband_coef_sign[i*vd+j]=0; |
| 2956 | 589 } |
| 590 } | |
| 591 } | |
| 592 return result; | |
| 593 } | |
| 594 | |
| 595 | |
| 596 /** | |
| 597 * Fill the mlt_buffer with mlt coefficients. | |
| 598 * | |
| 599 * @param q pointer to the COOKContext | |
| 600 * @param category pointer to the category array | |
|
4692
3318e3f6470f
Small simplifications to subband coefficient handling and use av_random().
banan
parents:
4674
diff
changeset
|
601 * @param quant_index_table pointer to the array |
| 2956 | 602 * @param mlt_buffer pointer to mlt coefficients |
| 603 */ | |
| 604 | |
| 605 | |
| 606 static void decode_vectors(COOKContext* q, int* category, | |
|
4692
3318e3f6470f
Small simplifications to subband coefficient handling and use av_random().
banan
parents:
4674
diff
changeset
|
607 int *quant_index_table, float* mlt_buffer){ |
| 2956 | 608 /* A zero in this table means that the subband coefficient is |
| 609 random noise coded. */ | |
| 4674 | 610 int subband_coef_index[SUBBAND_SIZE]; |
| 2956 | 611 /* A zero in this table means that the subband coefficient is a |
| 612 positive multiplicator. */ | |
| 4674 | 613 int subband_coef_sign[SUBBAND_SIZE]; |
| 2956 | 614 int band, j; |
| 615 int index=0; | |
| 616 | |
| 617 for(band=0 ; band<q->total_subbands ; band++){ | |
| 618 index = category[band]; | |
| 619 if(category[band] < 7){ | |
| 4674 | 620 if(unpack_SQVH(q, category[band], subband_coef_index, subband_coef_sign)){ |
| 2956 | 621 index=7; |
| 622 for(j=0 ; j<q->total_subbands ; j++) category[band+j]=7; | |
| 623 } | |
| 624 } | |
| 625 if(index==7) { | |
| 626 memset(subband_coef_index, 0, sizeof(subband_coef_index)); | |
| 4674 | 627 memset(subband_coef_sign, 0, sizeof(subband_coef_sign)); |
| 2956 | 628 } |
|
5346
b41036edcf2e
fixpoint: lowlevel functional abstraction for all buffer arithmetics
mhoffman
parents:
5345
diff
changeset
|
629 q->scalar_dequant(q, index, quant_index_table[band], |
|
5350
503498b93901
cosmetics: adding some white space to align the arguments of a couple of functions
mhoffman
parents:
5348
diff
changeset
|
630 subband_coef_index, subband_coef_sign, |
|
503498b93901
cosmetics: adding some white space to align the arguments of a couple of functions
mhoffman
parents:
5348
diff
changeset
|
631 &mlt_buffer[band * SUBBAND_SIZE]); |
| 2956 | 632 } |
| 633 | |
| 634 if(q->total_subbands*SUBBAND_SIZE >= q->samples_per_channel){ | |
| 635 return; | |
| 4674 | 636 } /* FIXME: should this be removed, or moved into loop above? */ |
| 2956 | 637 } |
| 638 | |
| 639 | |
| 640 /** | |
| 641 * function for decoding mono data | |
| 642 * | |
| 643 * @param q pointer to the COOKContext | |
| 4860 | 644 * @param mlt_buffer pointer to mlt coefficients |
| 2956 | 645 */ |
| 646 | |
| 647 static void mono_decode(COOKContext *q, float* mlt_buffer) { | |
| 648 | |
| 649 int category_index[128]; | |
| 650 int quant_index_table[102]; | |
| 651 int category[128]; | |
| 652 | |
| 653 memset(&category, 0, 128*sizeof(int)); | |
| 654 memset(&category_index, 0, 128*sizeof(int)); | |
| 655 | |
| 656 decode_envelope(q, quant_index_table); | |
| 3090 | 657 q->num_vectors = get_bits(&q->gb,q->log2_numvector_size); |
| 2956 | 658 categorize(q, quant_index_table, category, category_index); |
| 659 expand_category(q, category, category_index); | |
|
4692
3318e3f6470f
Small simplifications to subband coefficient handling and use av_random().
banan
parents:
4674
diff
changeset
|
660 decode_vectors(q, category, quant_index_table, mlt_buffer); |
| 2956 | 661 } |
| 662 | |
| 663 | |
| 664 /** | |
| 665 * the actual requantization of the timedomain samples | |
| 666 * | |
| 667 * @param q pointer to the COOKContext | |
| 668 * @param buffer pointer to the timedomain buffer | |
| 669 * @param gain_index index for the block multiplier | |
| 670 * @param gain_index_next index for the next block multiplier | |
| 671 */ | |
| 672 | |
|
5353
7e4703e16bbd
fixpoint: renaming all lowlevel arithmetic routines to xxx_float
mhoffman
parents:
5350
diff
changeset
|
673 static void interpolate_float(COOKContext *q, float* buffer, |
| 2956 | 674 int gain_index, int gain_index_next){ |
| 675 int i; | |
| 676 float fc1, fc2; | |
| 677 fc1 = q->pow2tab[gain_index+63]; | |
| 678 | |
| 679 if(gain_index == gain_index_next){ //static gain | |
| 680 for(i=0 ; i<q->gain_size_factor ; i++){ | |
| 681 buffer[i]*=fc1; | |
| 682 } | |
| 683 return; | |
| 684 } else { //smooth gain | |
| 685 fc2 = q->gain_table[11 + (gain_index_next-gain_index)]; | |
| 686 for(i=0 ; i<q->gain_size_factor ; i++){ | |
| 687 buffer[i]*=fc1; | |
| 688 fc1*=fc2; | |
| 689 } | |
| 690 return; | |
| 691 } | |
| 692 } | |
| 693 | |
|
5345
af1c85da8982
fixpoint: separate windowing arithmetic imlt_window_float
mhoffman
parents:
5344
diff
changeset
|
694 /** |
|
af1c85da8982
fixpoint: separate windowing arithmetic imlt_window_float
mhoffman
parents:
5344
diff
changeset
|
695 * Apply transform window, overlap buffers. |
|
af1c85da8982
fixpoint: separate windowing arithmetic imlt_window_float
mhoffman
parents:
5344
diff
changeset
|
696 * |
|
af1c85da8982
fixpoint: separate windowing arithmetic imlt_window_float
mhoffman
parents:
5344
diff
changeset
|
697 * @param q pointer to the COOKContext |
|
af1c85da8982
fixpoint: separate windowing arithmetic imlt_window_float
mhoffman
parents:
5344
diff
changeset
|
698 * @param inbuffer pointer to the mltcoefficients |
|
af1c85da8982
fixpoint: separate windowing arithmetic imlt_window_float
mhoffman
parents:
5344
diff
changeset
|
699 * @param gains_ptr current and previous gains |
|
af1c85da8982
fixpoint: separate windowing arithmetic imlt_window_float
mhoffman
parents:
5344
diff
changeset
|
700 * @param previous_buffer pointer to the previous buffer to be used for overlapping |
|
af1c85da8982
fixpoint: separate windowing arithmetic imlt_window_float
mhoffman
parents:
5344
diff
changeset
|
701 */ |
|
af1c85da8982
fixpoint: separate windowing arithmetic imlt_window_float
mhoffman
parents:
5344
diff
changeset
|
702 |
|
af1c85da8982
fixpoint: separate windowing arithmetic imlt_window_float
mhoffman
parents:
5344
diff
changeset
|
703 static void imlt_window_float (COOKContext *q, float *buffer1, |
|
af1c85da8982
fixpoint: separate windowing arithmetic imlt_window_float
mhoffman
parents:
5344
diff
changeset
|
704 cook_gains *gains_ptr, float *previous_buffer) |
|
af1c85da8982
fixpoint: separate windowing arithmetic imlt_window_float
mhoffman
parents:
5344
diff
changeset
|
705 { |
|
af1c85da8982
fixpoint: separate windowing arithmetic imlt_window_float
mhoffman
parents:
5344
diff
changeset
|
706 const float fc = q->pow2tab[gains_ptr->previous[0] + 63]; |
|
af1c85da8982
fixpoint: separate windowing arithmetic imlt_window_float
mhoffman
parents:
5344
diff
changeset
|
707 int i; |
|
af1c85da8982
fixpoint: separate windowing arithmetic imlt_window_float
mhoffman
parents:
5344
diff
changeset
|
708 /* The weird thing here, is that the two halves of the time domain |
|
af1c85da8982
fixpoint: separate windowing arithmetic imlt_window_float
mhoffman
parents:
5344
diff
changeset
|
709 * buffer are swapped. Also, the newest data, that we save away for |
|
af1c85da8982
fixpoint: separate windowing arithmetic imlt_window_float
mhoffman
parents:
5344
diff
changeset
|
710 * next frame, has the wrong sign. Hence the subtraction below. |
|
af1c85da8982
fixpoint: separate windowing arithmetic imlt_window_float
mhoffman
parents:
5344
diff
changeset
|
711 * Almost sounds like a complex conjugate/reverse data/FFT effect. |
|
af1c85da8982
fixpoint: separate windowing arithmetic imlt_window_float
mhoffman
parents:
5344
diff
changeset
|
712 */ |
|
af1c85da8982
fixpoint: separate windowing arithmetic imlt_window_float
mhoffman
parents:
5344
diff
changeset
|
713 |
|
af1c85da8982
fixpoint: separate windowing arithmetic imlt_window_float
mhoffman
parents:
5344
diff
changeset
|
714 /* Apply window and overlap */ |
|
af1c85da8982
fixpoint: separate windowing arithmetic imlt_window_float
mhoffman
parents:
5344
diff
changeset
|
715 for(i = 0; i < q->samples_per_channel; i++){ |
|
af1c85da8982
fixpoint: separate windowing arithmetic imlt_window_float
mhoffman
parents:
5344
diff
changeset
|
716 buffer1[i] = buffer1[i] * fc * q->mlt_window[i] - |
|
af1c85da8982
fixpoint: separate windowing arithmetic imlt_window_float
mhoffman
parents:
5344
diff
changeset
|
717 previous_buffer[i] * q->mlt_window[q->samples_per_channel - 1 - i]; |
|
af1c85da8982
fixpoint: separate windowing arithmetic imlt_window_float
mhoffman
parents:
5344
diff
changeset
|
718 } |
|
af1c85da8982
fixpoint: separate windowing arithmetic imlt_window_float
mhoffman
parents:
5344
diff
changeset
|
719 } |
| 2956 | 720 |
| 721 /** | |
| 4653 | 722 * The modulated lapped transform, this takes transform coefficients |
| 723 * and transforms them into timedomain samples. | |
| 724 * Apply transform window, overlap buffers, apply gain profile | |
| 725 * and buffer management. | |
| 2956 | 726 * |
| 727 * @param q pointer to the COOKContext | |
| 4653 | 728 * @param inbuffer pointer to the mltcoefficients |
| 4639 | 729 * @param gains_ptr current and previous gains |
| 2956 | 730 * @param previous_buffer pointer to the previous buffer to be used for overlapping |
| 731 */ | |
| 732 | |
| 4653 | 733 static void imlt_gain(COOKContext *q, float *inbuffer, |
| 734 cook_gains *gains_ptr, float* previous_buffer) | |
| 4639 | 735 { |
| 4653 | 736 float *buffer0 = q->mono_mdct_output; |
| 737 float *buffer1 = q->mono_mdct_output + q->samples_per_channel; | |
| 2956 | 738 int i; |
| 4639 | 739 |
| 4653 | 740 /* Inverse modified discrete cosine transform */ |
| 741 q->mdct_ctx.fft.imdct_calc(&q->mdct_ctx, q->mono_mdct_output, | |
| 742 inbuffer, q->mdct_tmp); | |
| 743 | |
|
5346
b41036edcf2e
fixpoint: lowlevel functional abstraction for all buffer arithmetics
mhoffman
parents:
5345
diff
changeset
|
744 q->imlt_window (q, buffer1, gains_ptr, previous_buffer); |
| 2956 | 745 |
| 4639 | 746 /* Apply gain profile */ |
| 747 for (i = 0; i < 8; i++) { | |
| 748 if (gains_ptr->now[i] || gains_ptr->now[i + 1]) | |
|
5346
b41036edcf2e
fixpoint: lowlevel functional abstraction for all buffer arithmetics
mhoffman
parents:
5345
diff
changeset
|
749 q->interpolate(q, &buffer1[q->gain_size_factor * i], |
|
5350
503498b93901
cosmetics: adding some white space to align the arguments of a couple of functions
mhoffman
parents:
5348
diff
changeset
|
750 gains_ptr->now[i], gains_ptr->now[i + 1]); |
| 4639 | 751 } |
| 2956 | 752 |
| 753 /* Save away the current to be previous block. */ | |
| 4653 | 754 memcpy(previous_buffer, buffer0, sizeof(float)*q->samples_per_channel); |
| 2956 | 755 } |
| 756 | |
| 757 | |
| 758 /** | |
| 759 * function for getting the jointstereo coupling information | |
| 760 * | |
| 761 * @param q pointer to the COOKContext | |
| 762 * @param decouple_tab decoupling array | |
| 763 * | |
| 764 */ | |
| 765 | |
| 766 static void decouple_info(COOKContext *q, int* decouple_tab){ | |
| 767 int length, i; | |
| 768 | |
| 769 if(get_bits1(&q->gb)) { | |
| 770 if(cplband[q->js_subband_start] > cplband[q->subbands-1]) return; | |
| 771 | |
| 772 length = cplband[q->subbands-1] - cplband[q->js_subband_start] + 1; | |
| 773 for (i=0 ; i<length ; i++) { | |
| 774 decouple_tab[cplband[q->js_subband_start] + i] = get_vlc2(&q->gb, q->ccpl.table, q->ccpl.bits, 2); | |
| 775 } | |
| 776 return; | |
| 777 } | |
| 778 | |
| 779 if(cplband[q->js_subband_start] > cplband[q->subbands-1]) return; | |
| 780 | |
| 781 length = cplband[q->subbands-1] - cplband[q->js_subband_start] + 1; | |
| 782 for (i=0 ; i<length ; i++) { | |
| 783 decouple_tab[cplband[q->js_subband_start] + i] = get_bits(&q->gb, q->js_vlc_bits); | |
| 784 } | |
| 785 return; | |
| 786 } | |
| 787 | |
|
5344
b0d49997bd92
separate the actual math for recovering stereo from a signal channel, this is to allow fixpoint implementation
mhoffman
parents:
5343
diff
changeset
|
788 /* |
|
b0d49997bd92
separate the actual math for recovering stereo from a signal channel, this is to allow fixpoint implementation
mhoffman
parents:
5343
diff
changeset
|
789 * function decouples a pair of signals from a single signal via multiplication. |
|
b0d49997bd92
separate the actual math for recovering stereo from a signal channel, this is to allow fixpoint implementation
mhoffman
parents:
5343
diff
changeset
|
790 * |
|
b0d49997bd92
separate the actual math for recovering stereo from a signal channel, this is to allow fixpoint implementation
mhoffman
parents:
5343
diff
changeset
|
791 * @param q pointer to the COOKContext |
|
b0d49997bd92
separate the actual math for recovering stereo from a signal channel, this is to allow fixpoint implementation
mhoffman
parents:
5343
diff
changeset
|
792 * @param subband index of the current subband |
|
b0d49997bd92
separate the actual math for recovering stereo from a signal channel, this is to allow fixpoint implementation
mhoffman
parents:
5343
diff
changeset
|
793 * @param f1 multiplier for channel 1 extraction |
|
b0d49997bd92
separate the actual math for recovering stereo from a signal channel, this is to allow fixpoint implementation
mhoffman
parents:
5343
diff
changeset
|
794 * @param f2 multiplier for channel 2 extraction |
|
b0d49997bd92
separate the actual math for recovering stereo from a signal channel, this is to allow fixpoint implementation
mhoffman
parents:
5343
diff
changeset
|
795 * @param decode_buffer input buffer |
|
b0d49997bd92
separate the actual math for recovering stereo from a signal channel, this is to allow fixpoint implementation
mhoffman
parents:
5343
diff
changeset
|
796 * @param mlt_buffer1 pointer to left channel mlt coefficients |
|
b0d49997bd92
separate the actual math for recovering stereo from a signal channel, this is to allow fixpoint implementation
mhoffman
parents:
5343
diff
changeset
|
797 * @param mlt_buffer2 pointer to right channel mlt coefficients |
|
b0d49997bd92
separate the actual math for recovering stereo from a signal channel, this is to allow fixpoint implementation
mhoffman
parents:
5343
diff
changeset
|
798 */ |
|
b0d49997bd92
separate the actual math for recovering stereo from a signal channel, this is to allow fixpoint implementation
mhoffman
parents:
5343
diff
changeset
|
799 static void decouple_float (COOKContext *q, |
|
b0d49997bd92
separate the actual math for recovering stereo from a signal channel, this is to allow fixpoint implementation
mhoffman
parents:
5343
diff
changeset
|
800 int subband, |
|
b0d49997bd92
separate the actual math for recovering stereo from a signal channel, this is to allow fixpoint implementation
mhoffman
parents:
5343
diff
changeset
|
801 float f1, float f2, |
|
b0d49997bd92
separate the actual math for recovering stereo from a signal channel, this is to allow fixpoint implementation
mhoffman
parents:
5343
diff
changeset
|
802 float *decode_buffer, |
|
b0d49997bd92
separate the actual math for recovering stereo from a signal channel, this is to allow fixpoint implementation
mhoffman
parents:
5343
diff
changeset
|
803 float *mlt_buffer1, float *mlt_buffer2) |
|
b0d49997bd92
separate the actual math for recovering stereo from a signal channel, this is to allow fixpoint implementation
mhoffman
parents:
5343
diff
changeset
|
804 { |
|
b0d49997bd92
separate the actual math for recovering stereo from a signal channel, this is to allow fixpoint implementation
mhoffman
parents:
5343
diff
changeset
|
805 int j, tmp_idx; |
|
b0d49997bd92
separate the actual math for recovering stereo from a signal channel, this is to allow fixpoint implementation
mhoffman
parents:
5343
diff
changeset
|
806 for (j=0 ; j<SUBBAND_SIZE ; j++) { |
|
b0d49997bd92
separate the actual math for recovering stereo from a signal channel, this is to allow fixpoint implementation
mhoffman
parents:
5343
diff
changeset
|
807 tmp_idx = ((q->js_subband_start + subband)*SUBBAND_SIZE)+j; |
|
b0d49997bd92
separate the actual math for recovering stereo from a signal channel, this is to allow fixpoint implementation
mhoffman
parents:
5343
diff
changeset
|
808 mlt_buffer1[SUBBAND_SIZE*subband + j] = f1 * decode_buffer[tmp_idx]; |
|
b0d49997bd92
separate the actual math for recovering stereo from a signal channel, this is to allow fixpoint implementation
mhoffman
parents:
5343
diff
changeset
|
809 mlt_buffer2[SUBBAND_SIZE*subband + j] = f2 * decode_buffer[tmp_idx]; |
|
b0d49997bd92
separate the actual math for recovering stereo from a signal channel, this is to allow fixpoint implementation
mhoffman
parents:
5343
diff
changeset
|
810 } |
|
b0d49997bd92
separate the actual math for recovering stereo from a signal channel, this is to allow fixpoint implementation
mhoffman
parents:
5343
diff
changeset
|
811 } |
| 2956 | 812 |
| 813 /** | |
| 814 * function for decoding joint stereo data | |
| 815 * | |
| 816 * @param q pointer to the COOKContext | |
| 817 * @param mlt_buffer1 pointer to left channel mlt coefficients | |
| 818 * @param mlt_buffer2 pointer to right channel mlt coefficients | |
| 819 */ | |
| 820 | |
| 821 static void joint_decode(COOKContext *q, float* mlt_buffer1, | |
| 822 float* mlt_buffer2) { | |
| 823 int i,j; | |
| 824 int decouple_tab[SUBBAND_SIZE]; | |
|
5342
887509b42d3f
moving automatic allocation of joint_decode/decode_buffer
mhoffman
parents:
5341
diff
changeset
|
825 float *decode_buffer = q->decode_buffer_0; |
| 5448 | 826 int idx, cpl_tmp; |
| 2956 | 827 float f1,f2; |
|
6197
2ca0a91b0b24
add const, fix warning: cook.c:276: warning: passing argument 2 of 'maybe_reformat_buffer32' discards qualifiers from pointer target type
bcoudurier
parents:
5523
diff
changeset
|
828 const float* cplscale; |
| 2956 | 829 |
| 830 memset(decouple_tab, 0, sizeof(decouple_tab)); | |
| 831 memset(decode_buffer, 0, sizeof(decode_buffer)); | |
| 832 | |
| 833 /* Make sure the buffers are zeroed out. */ | |
| 834 memset(mlt_buffer1,0, 1024*sizeof(float)); | |
| 835 memset(mlt_buffer2,0, 1024*sizeof(float)); | |
| 836 decouple_info(q, decouple_tab); | |
| 837 mono_decode(q, decode_buffer); | |
| 838 | |
| 839 /* The two channels are stored interleaved in decode_buffer. */ | |
| 840 for (i=0 ; i<q->js_subband_start ; i++) { | |
| 841 for (j=0 ; j<SUBBAND_SIZE ; j++) { | |
| 842 mlt_buffer1[i*20+j] = decode_buffer[i*40+j]; | |
| 843 mlt_buffer2[i*20+j] = decode_buffer[i*40+20+j]; | |
| 844 } | |
| 845 } | |
| 846 | |
| 847 /* When we reach js_subband_start (the higher frequencies) | |
| 848 the coefficients are stored in a coupling scheme. */ | |
| 849 idx = (1 << q->js_vlc_bits) - 1; | |
|
3009
f5898b9b8a8a
Fix an out of array access and some minor cleanup of the code.
diego
parents:
2959
diff
changeset
|
850 for (i=q->js_subband_start ; i<q->subbands ; i++) { |
|
f5898b9b8a8a
Fix an out of array access and some minor cleanup of the code.
diego
parents:
2959
diff
changeset
|
851 cpl_tmp = cplband[i]; |
|
f5898b9b8a8a
Fix an out of array access and some minor cleanup of the code.
diego
parents:
2959
diff
changeset
|
852 idx -=decouple_tab[cpl_tmp]; |
|
5347
59ec490fe985
fixpoint: move cplscales to context structure and provide hook for data format conversion
mhoffman
parents:
5346
diff
changeset
|
853 cplscale = q->cplscales[q->js_vlc_bits-2]; //choose decoupler table |
|
3009
f5898b9b8a8a
Fix an out of array access and some minor cleanup of the code.
diego
parents:
2959
diff
changeset
|
854 f1 = cplscale[decouple_tab[cpl_tmp]]; |
|
f5898b9b8a8a
Fix an out of array access and some minor cleanup of the code.
diego
parents:
2959
diff
changeset
|
855 f2 = cplscale[idx-1]; |
|
5346
b41036edcf2e
fixpoint: lowlevel functional abstraction for all buffer arithmetics
mhoffman
parents:
5345
diff
changeset
|
856 q->decouple (q, i, f1, f2, decode_buffer, mlt_buffer1, mlt_buffer2); |
|
3009
f5898b9b8a8a
Fix an out of array access and some minor cleanup of the code.
diego
parents:
2959
diff
changeset
|
857 idx = (1 << q->js_vlc_bits) - 1; |
| 2956 | 858 } |
| 859 } | |
| 860 | |
| 861 /** | |
|
4424
8c830bde8006
Cook stereo (MONO_COOK2) bugfix, by Ian Braithwaite.
banan
parents:
4423
diff
changeset
|
862 * First part of subpacket decoding: |
|
8c830bde8006
Cook stereo (MONO_COOK2) bugfix, by Ian Braithwaite.
banan
parents:
4423
diff
changeset
|
863 * decode raw stream bytes and read gain info. |
|
8c830bde8006
Cook stereo (MONO_COOK2) bugfix, by Ian Braithwaite.
banan
parents:
4423
diff
changeset
|
864 * |
|
8c830bde8006
Cook stereo (MONO_COOK2) bugfix, by Ian Braithwaite.
banan
parents:
4423
diff
changeset
|
865 * @param q pointer to the COOKContext |
|
8c830bde8006
Cook stereo (MONO_COOK2) bugfix, by Ian Braithwaite.
banan
parents:
4423
diff
changeset
|
866 * @param inbuffer pointer to raw stream data |
|
8c830bde8006
Cook stereo (MONO_COOK2) bugfix, by Ian Braithwaite.
banan
parents:
4423
diff
changeset
|
867 * @param gain_ptr array of current/prev gain pointers |
|
8c830bde8006
Cook stereo (MONO_COOK2) bugfix, by Ian Braithwaite.
banan
parents:
4423
diff
changeset
|
868 */ |
|
8c830bde8006
Cook stereo (MONO_COOK2) bugfix, by Ian Braithwaite.
banan
parents:
4423
diff
changeset
|
869 |
|
8c830bde8006
Cook stereo (MONO_COOK2) bugfix, by Ian Braithwaite.
banan
parents:
4423
diff
changeset
|
870 static inline void |
| 6232 | 871 decode_bytes_and_gain(COOKContext *q, const uint8_t *inbuffer, |
| 4639 | 872 cook_gains *gains_ptr) |
|
4424
8c830bde8006
Cook stereo (MONO_COOK2) bugfix, by Ian Braithwaite.
banan
parents:
4423
diff
changeset
|
873 { |
|
8c830bde8006
Cook stereo (MONO_COOK2) bugfix, by Ian Braithwaite.
banan
parents:
4423
diff
changeset
|
874 int offset; |
|
8c830bde8006
Cook stereo (MONO_COOK2) bugfix, by Ian Braithwaite.
banan
parents:
4423
diff
changeset
|
875 |
|
8c830bde8006
Cook stereo (MONO_COOK2) bugfix, by Ian Braithwaite.
banan
parents:
4423
diff
changeset
|
876 offset = decode_bytes(inbuffer, q->decoded_bytes_buffer, |
|
8c830bde8006
Cook stereo (MONO_COOK2) bugfix, by Ian Braithwaite.
banan
parents:
4423
diff
changeset
|
877 q->bits_per_subpacket/8); |
|
8c830bde8006
Cook stereo (MONO_COOK2) bugfix, by Ian Braithwaite.
banan
parents:
4423
diff
changeset
|
878 init_get_bits(&q->gb, q->decoded_bytes_buffer + offset, |
|
8c830bde8006
Cook stereo (MONO_COOK2) bugfix, by Ian Braithwaite.
banan
parents:
4423
diff
changeset
|
879 q->bits_per_subpacket); |
| 4639 | 880 decode_gain_info(&q->gb, gains_ptr->now); |
|
4428
eeb16216b454
decode_subpacket cleanup by Ian Braithwaite ian braithwaite dot dk.
banan
parents:
4425
diff
changeset
|
881 |
|
eeb16216b454
decode_subpacket cleanup by Ian Braithwaite ian braithwaite dot dk.
banan
parents:
4425
diff
changeset
|
882 /* Swap current and previous gains */ |
| 4639 | 883 FFSWAP(int *, gains_ptr->now, gains_ptr->previous); |
|
4428
eeb16216b454
decode_subpacket cleanup by Ian Braithwaite ian braithwaite dot dk.
banan
parents:
4425
diff
changeset
|
884 } |
|
eeb16216b454
decode_subpacket cleanup by Ian Braithwaite ian braithwaite dot dk.
banan
parents:
4425
diff
changeset
|
885 |
|
5343
1aa26b974dc3
separating saturation codes so that we can support other data formats
mhoffman
parents:
5342
diff
changeset
|
886 /** |
|
1aa26b974dc3
separating saturation codes so that we can support other data formats
mhoffman
parents:
5342
diff
changeset
|
887 * Saturate the output signal to signed 16bit integers. |
|
1aa26b974dc3
separating saturation codes so that we can support other data formats
mhoffman
parents:
5342
diff
changeset
|
888 * |
|
1aa26b974dc3
separating saturation codes so that we can support other data formats
mhoffman
parents:
5342
diff
changeset
|
889 * @param q pointer to the COOKContext |
|
1aa26b974dc3
separating saturation codes so that we can support other data formats
mhoffman
parents:
5342
diff
changeset
|
890 * @param chan channel to saturate |
|
1aa26b974dc3
separating saturation codes so that we can support other data formats
mhoffman
parents:
5342
diff
changeset
|
891 * @param out pointer to the output vector |
|
1aa26b974dc3
separating saturation codes so that we can support other data formats
mhoffman
parents:
5342
diff
changeset
|
892 */ |
|
1aa26b974dc3
separating saturation codes so that we can support other data formats
mhoffman
parents:
5342
diff
changeset
|
893 static void |
|
1aa26b974dc3
separating saturation codes so that we can support other data formats
mhoffman
parents:
5342
diff
changeset
|
894 saturate_output_float (COOKContext *q, int chan, int16_t *out) |
|
1aa26b974dc3
separating saturation codes so that we can support other data formats
mhoffman
parents:
5342
diff
changeset
|
895 { |
|
1aa26b974dc3
separating saturation codes so that we can support other data formats
mhoffman
parents:
5342
diff
changeset
|
896 int j; |
| 5348 | 897 float *output = q->mono_mdct_output + q->samples_per_channel; |
|
5343
1aa26b974dc3
separating saturation codes so that we can support other data formats
mhoffman
parents:
5342
diff
changeset
|
898 /* Clip and convert floats to 16 bits. |
|
1aa26b974dc3
separating saturation codes so that we can support other data formats
mhoffman
parents:
5342
diff
changeset
|
899 */ |
|
1aa26b974dc3
separating saturation codes so that we can support other data formats
mhoffman
parents:
5342
diff
changeset
|
900 for (j = 0; j < q->samples_per_channel; j++) { |
|
1aa26b974dc3
separating saturation codes so that we can support other data formats
mhoffman
parents:
5342
diff
changeset
|
901 out[chan + q->nb_channels * j] = |
| 5523 | 902 av_clip_int16(lrintf(output[j])); |
|
5343
1aa26b974dc3
separating saturation codes so that we can support other data formats
mhoffman
parents:
5342
diff
changeset
|
903 } |
|
1aa26b974dc3
separating saturation codes so that we can support other data formats
mhoffman
parents:
5342
diff
changeset
|
904 } |
|
1aa26b974dc3
separating saturation codes so that we can support other data formats
mhoffman
parents:
5342
diff
changeset
|
905 |
|
4428
eeb16216b454
decode_subpacket cleanup by Ian Braithwaite ian braithwaite dot dk.
banan
parents:
4425
diff
changeset
|
906 /** |
|
eeb16216b454
decode_subpacket cleanup by Ian Braithwaite ian braithwaite dot dk.
banan
parents:
4425
diff
changeset
|
907 * Final part of subpacket decoding: |
|
eeb16216b454
decode_subpacket cleanup by Ian Braithwaite ian braithwaite dot dk.
banan
parents:
4425
diff
changeset
|
908 * Apply modulated lapped transform, gain compensation, |
|
eeb16216b454
decode_subpacket cleanup by Ian Braithwaite ian braithwaite dot dk.
banan
parents:
4425
diff
changeset
|
909 * clip and convert to integer. |
|
eeb16216b454
decode_subpacket cleanup by Ian Braithwaite ian braithwaite dot dk.
banan
parents:
4425
diff
changeset
|
910 * |
|
eeb16216b454
decode_subpacket cleanup by Ian Braithwaite ian braithwaite dot dk.
banan
parents:
4425
diff
changeset
|
911 * @param q pointer to the COOKContext |
|
eeb16216b454
decode_subpacket cleanup by Ian Braithwaite ian braithwaite dot dk.
banan
parents:
4425
diff
changeset
|
912 * @param decode_buffer pointer to the mlt coefficients |
|
eeb16216b454
decode_subpacket cleanup by Ian Braithwaite ian braithwaite dot dk.
banan
parents:
4425
diff
changeset
|
913 * @param gain_ptr array of current/prev gain pointers |
|
eeb16216b454
decode_subpacket cleanup by Ian Braithwaite ian braithwaite dot dk.
banan
parents:
4425
diff
changeset
|
914 * @param previous_buffer pointer to the previous buffer to be used for overlapping |
|
eeb16216b454
decode_subpacket cleanup by Ian Braithwaite ian braithwaite dot dk.
banan
parents:
4425
diff
changeset
|
915 * @param out pointer to the output buffer |
|
eeb16216b454
decode_subpacket cleanup by Ian Braithwaite ian braithwaite dot dk.
banan
parents:
4425
diff
changeset
|
916 * @param chan 0: left or single channel, 1: right channel |
|
eeb16216b454
decode_subpacket cleanup by Ian Braithwaite ian braithwaite dot dk.
banan
parents:
4425
diff
changeset
|
917 */ |
|
eeb16216b454
decode_subpacket cleanup by Ian Braithwaite ian braithwaite dot dk.
banan
parents:
4425
diff
changeset
|
918 |
|
eeb16216b454
decode_subpacket cleanup by Ian Braithwaite ian braithwaite dot dk.
banan
parents:
4425
diff
changeset
|
919 static inline void |
|
eeb16216b454
decode_subpacket cleanup by Ian Braithwaite ian braithwaite dot dk.
banan
parents:
4425
diff
changeset
|
920 mlt_compensate_output(COOKContext *q, float *decode_buffer, |
| 4639 | 921 cook_gains *gains, float *previous_buffer, |
|
4428
eeb16216b454
decode_subpacket cleanup by Ian Braithwaite ian braithwaite dot dk.
banan
parents:
4425
diff
changeset
|
922 int16_t *out, int chan) |
|
eeb16216b454
decode_subpacket cleanup by Ian Braithwaite ian braithwaite dot dk.
banan
parents:
4425
diff
changeset
|
923 { |
| 4653 | 924 imlt_gain(q, decode_buffer, gains, previous_buffer); |
|
5346
b41036edcf2e
fixpoint: lowlevel functional abstraction for all buffer arithmetics
mhoffman
parents:
5345
diff
changeset
|
925 q->saturate_output (q, chan, out); |
|
4424
8c830bde8006
Cook stereo (MONO_COOK2) bugfix, by Ian Braithwaite.
banan
parents:
4423
diff
changeset
|
926 } |
|
8c830bde8006
Cook stereo (MONO_COOK2) bugfix, by Ian Braithwaite.
banan
parents:
4423
diff
changeset
|
927 |
|
8c830bde8006
Cook stereo (MONO_COOK2) bugfix, by Ian Braithwaite.
banan
parents:
4423
diff
changeset
|
928 |
|
8c830bde8006
Cook stereo (MONO_COOK2) bugfix, by Ian Braithwaite.
banan
parents:
4423
diff
changeset
|
929 /** |
| 2956 | 930 * Cook subpacket decoding. This function returns one decoded subpacket, |
| 931 * usually 1024 samples per channel. | |
| 932 * | |
| 933 * @param q pointer to the COOKContext | |
| 934 * @param inbuffer pointer to the inbuffer | |
| 935 * @param sub_packet_size subpacket size | |
| 936 * @param outbuffer pointer to the outbuffer | |
| 937 */ | |
| 938 | |
| 939 | |
| 6232 | 940 static int decode_subpacket(COOKContext *q, const uint8_t *inbuffer, |
| 2956 | 941 int sub_packet_size, int16_t *outbuffer) { |
| 942 /* packet dump */ | |
| 943 // for (i=0 ; i<sub_packet_size ; i++) { | |
| 944 // av_log(NULL, AV_LOG_ERROR, "%02x", inbuffer[i]); | |
| 945 // } | |
| 946 // av_log(NULL, AV_LOG_ERROR, "\n"); | |
| 947 | |
| 4639 | 948 decode_bytes_and_gain(q, inbuffer, &q->gains1); |
| 2956 | 949 |
|
4428
eeb16216b454
decode_subpacket cleanup by Ian Braithwaite ian braithwaite dot dk.
banan
parents:
4425
diff
changeset
|
950 if (q->joint_stereo) { |
|
eeb16216b454
decode_subpacket cleanup by Ian Braithwaite ian braithwaite dot dk.
banan
parents:
4425
diff
changeset
|
951 joint_decode(q, q->decode_buffer_1, q->decode_buffer_2); |
|
eeb16216b454
decode_subpacket cleanup by Ian Braithwaite ian braithwaite dot dk.
banan
parents:
4425
diff
changeset
|
952 } else { |
|
eeb16216b454
decode_subpacket cleanup by Ian Braithwaite ian braithwaite dot dk.
banan
parents:
4425
diff
changeset
|
953 mono_decode(q, q->decode_buffer_1); |
| 2956 | 954 |
|
4428
eeb16216b454
decode_subpacket cleanup by Ian Braithwaite ian braithwaite dot dk.
banan
parents:
4425
diff
changeset
|
955 if (q->nb_channels == 2) { |
| 4639 | 956 decode_bytes_and_gain(q, inbuffer + sub_packet_size/2, &q->gains2); |
|
4428
eeb16216b454
decode_subpacket cleanup by Ian Braithwaite ian braithwaite dot dk.
banan
parents:
4425
diff
changeset
|
957 mono_decode(q, q->decode_buffer_2); |
|
eeb16216b454
decode_subpacket cleanup by Ian Braithwaite ian braithwaite dot dk.
banan
parents:
4425
diff
changeset
|
958 } |
|
eeb16216b454
decode_subpacket cleanup by Ian Braithwaite ian braithwaite dot dk.
banan
parents:
4425
diff
changeset
|
959 } |
|
3014
959b8ad880dc
Dual mono stereo strems sound ok now, added sanity checks and removed
rtognimp
parents:
3009
diff
changeset
|
960 |
| 4639 | 961 mlt_compensate_output(q, q->decode_buffer_1, &q->gains1, |
|
4428
eeb16216b454
decode_subpacket cleanup by Ian Braithwaite ian braithwaite dot dk.
banan
parents:
4425
diff
changeset
|
962 q->mono_previous_buffer1, outbuffer, 0); |
| 2956 | 963 |
|
4428
eeb16216b454
decode_subpacket cleanup by Ian Braithwaite ian braithwaite dot dk.
banan
parents:
4425
diff
changeset
|
964 if (q->nb_channels == 2) { |
|
eeb16216b454
decode_subpacket cleanup by Ian Braithwaite ian braithwaite dot dk.
banan
parents:
4425
diff
changeset
|
965 if (q->joint_stereo) { |
| 4639 | 966 mlt_compensate_output(q, q->decode_buffer_2, &q->gains1, |
|
4428
eeb16216b454
decode_subpacket cleanup by Ian Braithwaite ian braithwaite dot dk.
banan
parents:
4425
diff
changeset
|
967 q->mono_previous_buffer2, outbuffer, 1); |
|
eeb16216b454
decode_subpacket cleanup by Ian Braithwaite ian braithwaite dot dk.
banan
parents:
4425
diff
changeset
|
968 } else { |
| 4639 | 969 mlt_compensate_output(q, q->decode_buffer_2, &q->gains2, |
|
4428
eeb16216b454
decode_subpacket cleanup by Ian Braithwaite ian braithwaite dot dk.
banan
parents:
4425
diff
changeset
|
970 q->mono_previous_buffer2, outbuffer, 1); |
| 2956 | 971 } |
| 972 } | |
|
2959
24805f4d1b84
This patch adds some support for non-joint stereo streams. It also
rtognimp
parents:
2956
diff
changeset
|
973 return q->samples_per_frame * sizeof(int16_t); |
| 2956 | 974 } |
| 975 | |
| 976 | |
| 977 /** | |
| 978 * Cook frame decoding | |
| 979 * | |
| 980 * @param avctx pointer to the AVCodecContext | |
| 981 */ | |
| 982 | |
| 983 static int cook_decode_frame(AVCodecContext *avctx, | |
| 984 void *data, int *data_size, | |
| 6232 | 985 const uint8_t *buf, int buf_size) { |
| 2956 | 986 COOKContext *q = avctx->priv_data; |
| 987 | |
| 988 if (buf_size < avctx->block_align) | |
| 989 return buf_size; | |
| 990 | |
| 991 *data_size = decode_subpacket(q, buf, avctx->block_align, data); | |
| 992 | |
|
4638
9f74306d4ac7
Don't output the first two frames, since they don't contain valid audio.
banan
parents:
4594
diff
changeset
|
993 /* Discard the first two frames: no valid audio. */ |
|
9f74306d4ac7
Don't output the first two frames, since they don't contain valid audio.
banan
parents:
4594
diff
changeset
|
994 if (avctx->frame_number < 2) *data_size = 0; |
|
9f74306d4ac7
Don't output the first two frames, since they don't contain valid audio.
banan
parents:
4594
diff
changeset
|
995 |
| 2956 | 996 return avctx->block_align; |
| 997 } | |
| 3090 | 998 |
| 2956 | 999 #ifdef COOKDEBUG |
|
4430
407e7fd9b4f4
Get rid of the COOKextradata struct. And use valid C to parse the extradata.
banan
parents:
4429
diff
changeset
|
1000 static void dump_cook_context(COOKContext *q) |
| 2956 | 1001 { |
| 1002 //int i=0; | |
| 1003 #define PRINT(a,b) av_log(NULL,AV_LOG_ERROR," %s = %d\n", a, b); | |
| 1004 av_log(NULL,AV_LOG_ERROR,"COOKextradata\n"); | |
|
4430
407e7fd9b4f4
Get rid of the COOKextradata struct. And use valid C to parse the extradata.
banan
parents:
4429
diff
changeset
|
1005 av_log(NULL,AV_LOG_ERROR,"cookversion=%x\n",q->cookversion); |
|
407e7fd9b4f4
Get rid of the COOKextradata struct. And use valid C to parse the extradata.
banan
parents:
4429
diff
changeset
|
1006 if (q->cookversion > STEREO) { |
|
407e7fd9b4f4
Get rid of the COOKextradata struct. And use valid C to parse the extradata.
banan
parents:
4429
diff
changeset
|
1007 PRINT("js_subband_start",q->js_subband_start); |
|
407e7fd9b4f4
Get rid of the COOKextradata struct. And use valid C to parse the extradata.
banan
parents:
4429
diff
changeset
|
1008 PRINT("js_vlc_bits",q->js_vlc_bits); |
| 2956 | 1009 } |
| 1010 av_log(NULL,AV_LOG_ERROR,"COOKContext\n"); | |
| 1011 PRINT("nb_channels",q->nb_channels); | |
| 1012 PRINT("bit_rate",q->bit_rate); | |
| 1013 PRINT("sample_rate",q->sample_rate); | |
| 1014 PRINT("samples_per_channel",q->samples_per_channel); | |
| 1015 PRINT("samples_per_frame",q->samples_per_frame); | |
| 1016 PRINT("subbands",q->subbands); | |
| 1017 PRINT("random_state",q->random_state); | |
| 1018 PRINT("js_subband_start",q->js_subband_start); | |
| 3090 | 1019 PRINT("log2_numvector_size",q->log2_numvector_size); |
| 2956 | 1020 PRINT("numvector_size",q->numvector_size); |
| 1021 PRINT("total_subbands",q->total_subbands); | |
| 1022 } | |
| 1023 #endif | |
| 3090 | 1024 |
| 2956 | 1025 /** |
| 1026 * Cook initialization | |
| 1027 * | |
| 1028 * @param avctx pointer to the AVCodecContext | |
| 1029 */ | |
| 1030 | |
| 1031 static int cook_decode_init(AVCodecContext *avctx) | |
| 1032 { | |
| 1033 COOKContext *q = avctx->priv_data; | |
| 6232 | 1034 const uint8_t *edata_ptr = avctx->extradata; |
| 2956 | 1035 |
| 1036 /* Take care of the codec specific extradata. */ | |
| 1037 if (avctx->extradata_size <= 0) { | |
|
4302
a0f83004d485
av_log(NULL,... -> av_log(avctx,.. where appropriate.
banan
parents:
3947
diff
changeset
|
1038 av_log(avctx,AV_LOG_ERROR,"Necessary extradata missing!\n"); |
| 2956 | 1039 return -1; |
| 1040 } else { | |
| 1041 /* 8 for mono, 16 for stereo, ? for multichannel | |
| 1042 Swap to right endianness so we don't need to care later on. */ | |
|
4302
a0f83004d485
av_log(NULL,... -> av_log(avctx,.. where appropriate.
banan
parents:
3947
diff
changeset
|
1043 av_log(avctx,AV_LOG_DEBUG,"codecdata_length=%d\n",avctx->extradata_size); |
| 2956 | 1044 if (avctx->extradata_size >= 8){ |
| 4542 | 1045 q->cookversion = bytestream_get_be32(&edata_ptr); |
| 1046 q->samples_per_frame = bytestream_get_be16(&edata_ptr); | |
| 1047 q->subbands = bytestream_get_be16(&edata_ptr); | |
| 2956 | 1048 } |
| 1049 if (avctx->extradata_size >= 16){ | |
| 4542 | 1050 bytestream_get_be32(&edata_ptr); //Unknown unused |
| 1051 q->js_subband_start = bytestream_get_be16(&edata_ptr); | |
| 1052 q->js_vlc_bits = bytestream_get_be16(&edata_ptr); | |
| 2956 | 1053 } |
| 1054 } | |
| 1055 | |
| 1056 /* Take data from the AVCodecContext (RM container). */ | |
| 1057 q->sample_rate = avctx->sample_rate; | |
| 1058 q->nb_channels = avctx->channels; | |
| 1059 q->bit_rate = avctx->bit_rate; | |
| 1060 | |
|
4692
3318e3f6470f
Small simplifications to subband coefficient handling and use av_random().
banan
parents:
4674
diff
changeset
|
1061 /* Initialize RNG. */ |
|
3318e3f6470f
Small simplifications to subband coefficient handling and use av_random().
banan
parents:
4674
diff
changeset
|
1062 av_init_random(1, &q->random_state); |
| 2956 | 1063 |
| 1064 /* Initialize extradata related variables. */ | |
|
4430
407e7fd9b4f4
Get rid of the COOKextradata struct. And use valid C to parse the extradata.
banan
parents:
4429
diff
changeset
|
1065 q->samples_per_channel = q->samples_per_frame / q->nb_channels; |
| 2956 | 1066 q->bits_per_subpacket = avctx->block_align * 8; |
| 1067 | |
| 1068 /* Initialize default data states. */ | |
| 3090 | 1069 q->log2_numvector_size = 5; |
| 2956 | 1070 q->total_subbands = q->subbands; |
| 1071 | |
| 1072 /* Initialize version-dependent variables */ | |
|
4430
407e7fd9b4f4
Get rid of the COOKextradata struct. And use valid C to parse the extradata.
banan
parents:
4429
diff
changeset
|
1073 av_log(NULL,AV_LOG_DEBUG,"q->cookversion=%x\n",q->cookversion); |
|
4428
eeb16216b454
decode_subpacket cleanup by Ian Braithwaite ian braithwaite dot dk.
banan
parents:
4425
diff
changeset
|
1074 q->joint_stereo = 0; |
|
4430
407e7fd9b4f4
Get rid of the COOKextradata struct. And use valid C to parse the extradata.
banan
parents:
4429
diff
changeset
|
1075 switch (q->cookversion) { |
| 4425 | 1076 case MONO: |
| 2956 | 1077 if (q->nb_channels != 1) { |
|
4302
a0f83004d485
av_log(NULL,... -> av_log(avctx,.. where appropriate.
banan
parents:
3947
diff
changeset
|
1078 av_log(avctx,AV_LOG_ERROR,"Container channels != 1, report sample!\n"); |
| 2956 | 1079 return -1; |
| 1080 } | |
| 4425 | 1081 av_log(avctx,AV_LOG_DEBUG,"MONO\n"); |
| 2956 | 1082 break; |
| 4425 | 1083 case STEREO: |
| 2956 | 1084 if (q->nb_channels != 1) { |
|
2959
24805f4d1b84
This patch adds some support for non-joint stereo streams. It also
rtognimp
parents:
2956
diff
changeset
|
1085 q->bits_per_subpacket = q->bits_per_subpacket/2; |
| 2956 | 1086 } |
| 4425 | 1087 av_log(avctx,AV_LOG_DEBUG,"STEREO\n"); |
| 2956 | 1088 break; |
| 1089 case JOINT_STEREO: | |
| 1090 if (q->nb_channels != 2) { | |
|
4302
a0f83004d485
av_log(NULL,... -> av_log(avctx,.. where appropriate.
banan
parents:
3947
diff
changeset
|
1091 av_log(avctx,AV_LOG_ERROR,"Container channels != 2, report sample!\n"); |
| 2956 | 1092 return -1; |
| 1093 } | |
|
4302
a0f83004d485
av_log(NULL,... -> av_log(avctx,.. where appropriate.
banan
parents:
3947
diff
changeset
|
1094 av_log(avctx,AV_LOG_DEBUG,"JOINT_STEREO\n"); |
| 2956 | 1095 if (avctx->extradata_size >= 16){ |
|
4430
407e7fd9b4f4
Get rid of the COOKextradata struct. And use valid C to parse the extradata.
banan
parents:
4429
diff
changeset
|
1096 q->total_subbands = q->subbands + q->js_subband_start; |
| 2956 | 1097 q->joint_stereo = 1; |
| 1098 } | |
| 1099 if (q->samples_per_channel > 256) { | |
|
3091
0284d5b34916
Fix broken cosmetics commit and add a check for valid headers.
banan
parents:
3090
diff
changeset
|
1100 q->log2_numvector_size = 6; |
| 2956 | 1101 } |
| 1102 if (q->samples_per_channel > 512) { | |
|
3091
0284d5b34916
Fix broken cosmetics commit and add a check for valid headers.
banan
parents:
3090
diff
changeset
|
1103 q->log2_numvector_size = 7; |
| 2956 | 1104 } |
| 1105 break; | |
| 1106 case MC_COOK: | |
|
4302
a0f83004d485
av_log(NULL,... -> av_log(avctx,.. where appropriate.
banan
parents:
3947
diff
changeset
|
1107 av_log(avctx,AV_LOG_ERROR,"MC_COOK not supported!\n"); |
| 2956 | 1108 return -1; |
| 1109 break; | |
| 1110 default: | |
|
4302
a0f83004d485
av_log(NULL,... -> av_log(avctx,.. where appropriate.
banan
parents:
3947
diff
changeset
|
1111 av_log(avctx,AV_LOG_ERROR,"Unknown Cook version, report sample!\n"); |
| 2956 | 1112 return -1; |
| 1113 break; | |
| 1114 } | |
| 1115 | |
| 1116 /* Initialize variable relations */ | |
| 3090 | 1117 q->numvector_size = (1 << q->log2_numvector_size); |
| 2956 | 1118 |
| 1119 /* Generate tables */ | |
| 1120 init_pow2table(q); | |
| 1121 init_gain_table(q); | |
|
5347
59ec490fe985
fixpoint: move cplscales to context structure and provide hook for data format conversion
mhoffman
parents:
5346
diff
changeset
|
1122 init_cplscales_table(q); |
| 2956 | 1123 |
| 1124 if (init_cook_vlc_tables(q) != 0) | |
| 1125 return -1; | |
| 1126 | |
|
3303
68721b62a528
sanity checks, some might have been exploitable ...
michael
parents:
3106
diff
changeset
|
1127 |
|
68721b62a528
sanity checks, some might have been exploitable ...
michael
parents:
3106
diff
changeset
|
1128 if(avctx->block_align >= UINT_MAX/2) |
|
68721b62a528
sanity checks, some might have been exploitable ...
michael
parents:
3106
diff
changeset
|
1129 return -1; |
|
68721b62a528
sanity checks, some might have been exploitable ...
michael
parents:
3106
diff
changeset
|
1130 |
|
4424
8c830bde8006
Cook stereo (MONO_COOK2) bugfix, by Ian Braithwaite.
banan
parents:
4423
diff
changeset
|
1131 /* Pad the databuffer with: |
|
8c830bde8006
Cook stereo (MONO_COOK2) bugfix, by Ian Braithwaite.
banan
parents:
4423
diff
changeset
|
1132 DECODE_BYTES_PAD1 or DECODE_BYTES_PAD2 for decode_bytes(), |
|
8c830bde8006
Cook stereo (MONO_COOK2) bugfix, by Ian Braithwaite.
banan
parents:
4423
diff
changeset
|
1133 FF_INPUT_BUFFER_PADDING_SIZE, for the bitstreamreader. */ |
|
8c830bde8006
Cook stereo (MONO_COOK2) bugfix, by Ian Braithwaite.
banan
parents:
4423
diff
changeset
|
1134 if (q->nb_channels==2 && q->joint_stereo==0) { |
|
8c830bde8006
Cook stereo (MONO_COOK2) bugfix, by Ian Braithwaite.
banan
parents:
4423
diff
changeset
|
1135 q->decoded_bytes_buffer = |
|
8c830bde8006
Cook stereo (MONO_COOK2) bugfix, by Ian Braithwaite.
banan
parents:
4423
diff
changeset
|
1136 av_mallocz(avctx->block_align/2 |
|
8c830bde8006
Cook stereo (MONO_COOK2) bugfix, by Ian Braithwaite.
banan
parents:
4423
diff
changeset
|
1137 + DECODE_BYTES_PAD2(avctx->block_align/2) |
|
8c830bde8006
Cook stereo (MONO_COOK2) bugfix, by Ian Braithwaite.
banan
parents:
4423
diff
changeset
|
1138 + FF_INPUT_BUFFER_PADDING_SIZE); |
|
8c830bde8006
Cook stereo (MONO_COOK2) bugfix, by Ian Braithwaite.
banan
parents:
4423
diff
changeset
|
1139 } else { |
|
8c830bde8006
Cook stereo (MONO_COOK2) bugfix, by Ian Braithwaite.
banan
parents:
4423
diff
changeset
|
1140 q->decoded_bytes_buffer = |
|
8c830bde8006
Cook stereo (MONO_COOK2) bugfix, by Ian Braithwaite.
banan
parents:
4423
diff
changeset
|
1141 av_mallocz(avctx->block_align |
|
8c830bde8006
Cook stereo (MONO_COOK2) bugfix, by Ian Braithwaite.
banan
parents:
4423
diff
changeset
|
1142 + DECODE_BYTES_PAD1(avctx->block_align) |
|
8c830bde8006
Cook stereo (MONO_COOK2) bugfix, by Ian Braithwaite.
banan
parents:
4423
diff
changeset
|
1143 + FF_INPUT_BUFFER_PADDING_SIZE); |
|
8c830bde8006
Cook stereo (MONO_COOK2) bugfix, by Ian Braithwaite.
banan
parents:
4423
diff
changeset
|
1144 } |
|
8c830bde8006
Cook stereo (MONO_COOK2) bugfix, by Ian Braithwaite.
banan
parents:
4423
diff
changeset
|
1145 if (q->decoded_bytes_buffer == NULL) |
| 2956 | 1146 return -1; |
| 1147 | |
| 4639 | 1148 q->gains1.now = q->gain_1; |
| 1149 q->gains1.previous = q->gain_2; | |
| 1150 q->gains2.now = q->gain_3; | |
| 1151 q->gains2.previous = q->gain_4; | |
| 2956 | 1152 |
| 1153 /* Initialize transform. */ | |
|
4650
31bf54d9353d
Replace custom modified discrete cosine transform with ffmpeg's own.
banan
parents:
4639
diff
changeset
|
1154 if ( init_cook_mlt(q) != 0 ) |
| 2956 | 1155 return -1; |
|
3014
959b8ad880dc
Dual mono stereo strems sound ok now, added sanity checks and removed
rtognimp
parents:
3009
diff
changeset
|
1156 |
|
5346
b41036edcf2e
fixpoint: lowlevel functional abstraction for all buffer arithmetics
mhoffman
parents:
5345
diff
changeset
|
1157 /* Initialize COOK signal arithmetic handling */ |
|
b41036edcf2e
fixpoint: lowlevel functional abstraction for all buffer arithmetics
mhoffman
parents:
5345
diff
changeset
|
1158 if (1) { |
|
5353
7e4703e16bbd
fixpoint: renaming all lowlevel arithmetic routines to xxx_float
mhoffman
parents:
5350
diff
changeset
|
1159 q->scalar_dequant = scalar_dequant_float; |
|
5346
b41036edcf2e
fixpoint: lowlevel functional abstraction for all buffer arithmetics
mhoffman
parents:
5345
diff
changeset
|
1160 q->decouple = decouple_float; |
|
b41036edcf2e
fixpoint: lowlevel functional abstraction for all buffer arithmetics
mhoffman
parents:
5345
diff
changeset
|
1161 q->imlt_window = imlt_window_float; |
|
5353
7e4703e16bbd
fixpoint: renaming all lowlevel arithmetic routines to xxx_float
mhoffman
parents:
5350
diff
changeset
|
1162 q->interpolate = interpolate_float; |
|
5346
b41036edcf2e
fixpoint: lowlevel functional abstraction for all buffer arithmetics
mhoffman
parents:
5345
diff
changeset
|
1163 q->saturate_output = saturate_output_float; |
|
b41036edcf2e
fixpoint: lowlevel functional abstraction for all buffer arithmetics
mhoffman
parents:
5345
diff
changeset
|
1164 } |
|
b41036edcf2e
fixpoint: lowlevel functional abstraction for all buffer arithmetics
mhoffman
parents:
5345
diff
changeset
|
1165 |
|
3014
959b8ad880dc
Dual mono stereo strems sound ok now, added sanity checks and removed
rtognimp
parents:
3009
diff
changeset
|
1166 /* Try to catch some obviously faulty streams, othervise it might be exploitable */ |
|
959b8ad880dc
Dual mono stereo strems sound ok now, added sanity checks and removed
rtognimp
parents:
3009
diff
changeset
|
1167 if (q->total_subbands > 53) { |
|
4302
a0f83004d485
av_log(NULL,... -> av_log(avctx,.. where appropriate.
banan
parents:
3947
diff
changeset
|
1168 av_log(avctx,AV_LOG_ERROR,"total_subbands > 53, report sample!\n"); |
|
3014
959b8ad880dc
Dual mono stereo strems sound ok now, added sanity checks and removed
rtognimp
parents:
3009
diff
changeset
|
1169 return -1; |
|
959b8ad880dc
Dual mono stereo strems sound ok now, added sanity checks and removed
rtognimp
parents:
3009
diff
changeset
|
1170 } |
|
959b8ad880dc
Dual mono stereo strems sound ok now, added sanity checks and removed
rtognimp
parents:
3009
diff
changeset
|
1171 if (q->subbands > 50) { |
|
4302
a0f83004d485
av_log(NULL,... -> av_log(avctx,.. where appropriate.
banan
parents:
3947
diff
changeset
|
1172 av_log(avctx,AV_LOG_ERROR,"subbands > 50, report sample!\n"); |
|
3014
959b8ad880dc
Dual mono stereo strems sound ok now, added sanity checks and removed
rtognimp
parents:
3009
diff
changeset
|
1173 return -1; |
|
959b8ad880dc
Dual mono stereo strems sound ok now, added sanity checks and removed
rtognimp
parents:
3009
diff
changeset
|
1174 } |
|
3091
0284d5b34916
Fix broken cosmetics commit and add a check for valid headers.
banan
parents:
3090
diff
changeset
|
1175 if ((q->samples_per_channel == 256) || (q->samples_per_channel == 512) || (q->samples_per_channel == 1024)) { |
|
0284d5b34916
Fix broken cosmetics commit and add a check for valid headers.
banan
parents:
3090
diff
changeset
|
1176 } else { |
|
4302
a0f83004d485
av_log(NULL,... -> av_log(avctx,.. where appropriate.
banan
parents:
3947
diff
changeset
|
1177 av_log(avctx,AV_LOG_ERROR,"unknown amount of samples_per_channel = %d, report sample!\n",q->samples_per_channel); |
|
3091
0284d5b34916
Fix broken cosmetics commit and add a check for valid headers.
banan
parents:
3090
diff
changeset
|
1178 return -1; |
|
0284d5b34916
Fix broken cosmetics commit and add a check for valid headers.
banan
parents:
3090
diff
changeset
|
1179 } |
|
4431
85ac154efd99
Check that js_vlc_bits from the extradata is in a valid range.
banan
parents:
4430
diff
changeset
|
1180 if ((q->js_vlc_bits > 6) || (q->js_vlc_bits < 0)) { |
|
85ac154efd99
Check that js_vlc_bits from the extradata is in a valid range.
banan
parents:
4430
diff
changeset
|
1181 av_log(avctx,AV_LOG_ERROR,"q->js_vlc_bits = %d, only >= 0 and <= 6 allowed!\n",q->js_vlc_bits); |
|
85ac154efd99
Check that js_vlc_bits from the extradata is in a valid range.
banan
parents:
4430
diff
changeset
|
1182 return -1; |
|
85ac154efd99
Check that js_vlc_bits from the extradata is in a valid range.
banan
parents:
4430
diff
changeset
|
1183 } |
|
3014
959b8ad880dc
Dual mono stereo strems sound ok now, added sanity checks and removed
rtognimp
parents:
3009
diff
changeset
|
1184 |
|
3009
f5898b9b8a8a
Fix an out of array access and some minor cleanup of the code.
diego
parents:
2959
diff
changeset
|
1185 #ifdef COOKDEBUG |
|
4430
407e7fd9b4f4
Get rid of the COOKextradata struct. And use valid C to parse the extradata.
banan
parents:
4429
diff
changeset
|
1186 dump_cook_context(q); |
|
3009
f5898b9b8a8a
Fix an out of array access and some minor cleanup of the code.
diego
parents:
2959
diff
changeset
|
1187 #endif |
| 2956 | 1188 return 0; |
| 1189 } | |
| 1190 | |
| 1191 | |
| 1192 AVCodec cook_decoder = | |
| 1193 { | |
| 1194 .name = "cook", | |
| 1195 .type = CODEC_TYPE_AUDIO, | |
| 1196 .id = CODEC_ID_COOK, | |
| 1197 .priv_data_size = sizeof(COOKContext), | |
| 1198 .init = cook_decode_init, | |
| 1199 .close = cook_decode_close, | |
| 1200 .decode = cook_decode_frame, | |
| 6710 | 1201 .long_name = "COOK", |
| 2956 | 1202 }; |
