Mercurial > libavcodec.hg
annotate wavpack.c @ 5488:0f736b1402ca libavcodec
get rid of av_rescale_q, it does not work as intended.
| author | reimar |
|---|---|
| date | Sun, 05 Aug 2007 12:11:22 +0000 |
| parents | bba203d5c5e7 |
| children | 37bf17e052fb |
| rev | line source |
|---|---|
| 3764 | 1 /* |
| 2 * WavPack lossless audio decoder | |
| 3 * Copyright (c) 2006 Konstantin Shishkov | |
| 4 * | |
|
3947
c8c591fe26f8
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
3782
diff
changeset
|
5 * This file is part of FFmpeg. |
|
c8c591fe26f8
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
3782
diff
changeset
|
6 * |
|
c8c591fe26f8
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
3782
diff
changeset
|
7 * FFmpeg is free software; you can redistribute it and/or |
| 3764 | 8 * modify it under the terms of the GNU Lesser General Public |
| 9 * 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:
3782
diff
changeset
|
10 * version 2.1 of the License, or (at your option) any later version. |
| 3764 | 11 * |
|
3947
c8c591fe26f8
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
3782
diff
changeset
|
12 * FFmpeg is distributed in the hope that it will be useful, |
| 3764 | 13 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
| 15 * Lesser General Public License for more details. | |
| 16 * | |
| 17 * 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:
3782
diff
changeset
|
18 * License along with FFmpeg; if not, write to the Free Software |
| 3764 | 19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA |
| 20 */ | |
| 21 #define ALT_BITSTREAM_READER_LE | |
| 22 #include "avcodec.h" | |
| 23 #include "bitstream.h" | |
| 24 | |
| 25 /** | |
| 26 * @file wavpack.c | |
| 27 * WavPack lossless audio decoder | |
| 28 */ | |
| 29 | |
| 30 #define WV_JOINT 0x0010 | |
| 31 | |
| 32 enum WP_ID_Flags{ | |
| 33 WP_IDF_MASK = 0x1F, | |
| 34 WP_IDF_IGNORE = 0x20, | |
| 35 WP_IDF_ODD = 0x40, | |
| 36 WP_IDF_LONG = 0x80 | |
| 37 }; | |
| 38 | |
| 39 enum WP_ID{ | |
| 40 WP_ID_DUMMY = 0, | |
| 41 WP_ID_ENCINFO, | |
| 42 WP_ID_DECTERMS, | |
| 43 WP_ID_DECWEIGHTS, | |
| 44 WP_ID_DECSAMPLES, | |
| 45 WP_ID_ENTROPY, | |
| 46 WP_ID_HYBRID, | |
| 47 WP_ID_SHAPING, | |
| 48 WP_ID_FLOATINFO, | |
| 49 WP_ID_INT32INFO, | |
| 50 WP_ID_DATA, | |
| 51 WP_ID_CORR, | |
| 52 WP_ID_FLT, | |
| 53 WP_ID_CHANINFO | |
| 54 }; | |
| 55 | |
| 56 #define MAX_TERMS 16 | |
| 57 | |
| 58 typedef struct Decorr { | |
| 59 int delta; | |
| 60 int value; | |
| 61 int weightA; | |
| 62 int weightB; | |
| 63 int samplesA[8]; | |
| 64 int samplesB[8]; | |
| 65 } Decorr; | |
| 66 | |
| 67 typedef struct WavpackContext { | |
| 68 AVCodecContext *avctx; | |
| 69 int stereo; | |
| 70 int joint; | |
| 71 uint32_t CRC; | |
| 72 GetBitContext gb; | |
| 73 int data_size; // in bits | |
| 74 int samples; | |
| 75 int median[6]; | |
| 76 int terms; | |
| 77 Decorr decorr[MAX_TERMS]; | |
| 78 int zero, one, zeroes; | |
|
5482
bba203d5c5e7
Add the handling of the INT32INFO block to the WavPack decoder.
kostya
parents:
4690
diff
changeset
|
79 int and, or, shift; |
| 3764 | 80 } WavpackContext; |
| 81 | |
| 82 // exponent table copied from WavPack source | |
| 83 static const uint8_t wp_exp2_table [256] = { | |
| 84 0x00, 0x01, 0x01, 0x02, 0x03, 0x03, 0x04, 0x05, 0x06, 0x06, 0x07, 0x08, 0x08, 0x09, 0x0a, 0x0b, | |
| 85 0x0b, 0x0c, 0x0d, 0x0e, 0x0e, 0x0f, 0x10, 0x10, 0x11, 0x12, 0x13, 0x13, 0x14, 0x15, 0x16, 0x16, | |
| 86 0x17, 0x18, 0x19, 0x19, 0x1a, 0x1b, 0x1c, 0x1d, 0x1d, 0x1e, 0x1f, 0x20, 0x20, 0x21, 0x22, 0x23, | |
| 87 0x24, 0x24, 0x25, 0x26, 0x27, 0x28, 0x28, 0x29, 0x2a, 0x2b, 0x2c, 0x2c, 0x2d, 0x2e, 0x2f, 0x30, | |
| 88 0x30, 0x31, 0x32, 0x33, 0x34, 0x35, 0x35, 0x36, 0x37, 0x38, 0x39, 0x3a, 0x3a, 0x3b, 0x3c, 0x3d, | |
| 89 0x3e, 0x3f, 0x40, 0x41, 0x41, 0x42, 0x43, 0x44, 0x45, 0x46, 0x47, 0x48, 0x48, 0x49, 0x4a, 0x4b, | |
| 90 0x4c, 0x4d, 0x4e, 0x4f, 0x50, 0x51, 0x51, 0x52, 0x53, 0x54, 0x55, 0x56, 0x57, 0x58, 0x59, 0x5a, | |
| 91 0x5b, 0x5c, 0x5d, 0x5e, 0x5e, 0x5f, 0x60, 0x61, 0x62, 0x63, 0x64, 0x65, 0x66, 0x67, 0x68, 0x69, | |
| 92 0x6a, 0x6b, 0x6c, 0x6d, 0x6e, 0x6f, 0x70, 0x71, 0x72, 0x73, 0x74, 0x75, 0x76, 0x77, 0x78, 0x79, | |
| 93 0x7a, 0x7b, 0x7c, 0x7d, 0x7e, 0x7f, 0x80, 0x81, 0x82, 0x83, 0x84, 0x85, 0x87, 0x88, 0x89, 0x8a, | |
| 94 0x8b, 0x8c, 0x8d, 0x8e, 0x8f, 0x90, 0x91, 0x92, 0x93, 0x95, 0x96, 0x97, 0x98, 0x99, 0x9a, 0x9b, | |
| 95 0x9c, 0x9d, 0x9f, 0xa0, 0xa1, 0xa2, 0xa3, 0xa4, 0xa5, 0xa6, 0xa8, 0xa9, 0xaa, 0xab, 0xac, 0xad, | |
| 96 0xaf, 0xb0, 0xb1, 0xb2, 0xb3, 0xb4, 0xb6, 0xb7, 0xb8, 0xb9, 0xba, 0xbc, 0xbd, 0xbe, 0xbf, 0xc0, | |
| 97 0xc2, 0xc3, 0xc4, 0xc5, 0xc6, 0xc8, 0xc9, 0xca, 0xcb, 0xcd, 0xce, 0xcf, 0xd0, 0xd2, 0xd3, 0xd4, | |
| 98 0xd6, 0xd7, 0xd8, 0xd9, 0xdb, 0xdc, 0xdd, 0xde, 0xe0, 0xe1, 0xe2, 0xe4, 0xe5, 0xe6, 0xe8, 0xe9, | |
| 99 0xea, 0xec, 0xed, 0xee, 0xf0, 0xf1, 0xf2, 0xf4, 0xf5, 0xf6, 0xf8, 0xf9, 0xfa, 0xfc, 0xfd, 0xff | |
| 100 }; | |
| 101 | |
|
4283
d6f83e2f8804
rename always_inline to av_always_inline and move to common.h
mru
parents:
4021
diff
changeset
|
102 static av_always_inline int wp_exp2(int16_t val) |
| 3764 | 103 { |
| 104 int res, neg = 0; | |
| 105 | |
| 106 if(val < 0){ | |
| 107 val = -val; | |
| 108 neg = 1; | |
| 109 } | |
| 110 | |
| 111 res = wp_exp2_table[val & 0xFF] | 0x100; | |
| 112 val >>= 8; | |
| 113 res = (val > 9) ? (res << (val - 9)) : (res >> (9 - val)); | |
| 114 return neg ? -res : res; | |
| 115 } | |
| 116 | |
| 117 static inline int get_unary(GetBitContext *gb){ | |
| 118 int r=0; | |
| 119 while(get_bits1(gb) && r<33)r++; | |
| 120 return r; | |
| 121 } | |
| 122 | |
| 123 // macros for manipulating median values | |
| 124 #define GET_MED(n) ((median[n] >> 4) + 1) | |
| 125 #define DEC_MED(n) median[n] -= ((median[n] + (128>>n) - 2) / (128>>n)) * 2 | |
| 126 #define INC_MED(n) median[n] += ((median[n] + (128>>n)) / (128>>n)) * 5 | |
| 127 | |
| 128 // macros for applying weight | |
| 129 #define UPDATE_WEIGHT_CLIP(weight, delta, samples, in) \ | |
| 130 if(samples && in){ \ | |
| 131 if((samples ^ in) < 0){ \ | |
| 132 weight -= delta; \ | |
| 133 if(weight < -1024) weight = -1024; \ | |
| 134 }else{ \ | |
| 135 weight += delta; \ | |
| 136 if(weight > 1024) weight = 1024; \ | |
| 137 } \ | |
| 138 } | |
| 139 | |
| 140 | |
|
4283
d6f83e2f8804
rename always_inline to av_always_inline and move to common.h
mru
parents:
4021
diff
changeset
|
141 static av_always_inline int get_tail(GetBitContext *gb, int k) |
| 3764 | 142 { |
| 143 int p, e, res; | |
| 144 | |
| 4421 | 145 if(k<1)return 0; |
| 146 p = av_log2(k); | |
| 3764 | 147 e = (1 << (p + 1)) - k - 1; |
| 3782 | 148 res = p ? get_bits(gb, p) : 0; |
| 3764 | 149 if(res >= e){ |
| 150 res = (res<<1) - e + get_bits1(gb); | |
| 151 } | |
| 152 return res; | |
| 153 } | |
| 154 | |
| 155 static int wv_get_value(WavpackContext *ctx, GetBitContext *gb, int *median, int *last) | |
| 156 { | |
| 157 int t, t2; | |
| 158 int sign, base, add, ret; | |
| 159 | |
| 160 *last = 0; | |
| 161 | |
| 162 if((ctx->median[0] < 2U) && (ctx->median[3] < 2U) && !ctx->zero && !ctx->one){ | |
| 163 if(ctx->zeroes){ | |
| 164 ctx->zeroes--; | |
| 165 if(ctx->zeroes) | |
| 166 return 0; | |
| 167 }else{ | |
| 168 t = get_unary(gb); | |
| 169 if(t >= 2) t = get_bits(gb, t - 1) | (1 << (t-1)); | |
| 170 ctx->zeroes = t; | |
| 171 if(ctx->zeroes){ | |
| 172 memset(ctx->median, 0, sizeof(ctx->median)); | |
| 173 return 0; | |
| 174 } | |
| 175 } | |
| 176 } | |
| 177 | |
| 178 if(get_bits_count(gb) >= ctx->data_size){ | |
| 179 *last = 1; | |
| 180 return 0; | |
| 181 } | |
| 182 | |
| 183 if(ctx->zero){ | |
| 184 t = 0; | |
| 185 ctx->zero = 0; | |
| 186 }else{ | |
| 187 t = get_unary(gb); | |
| 188 if(get_bits_count(gb) >= ctx->data_size){ | |
| 189 *last = 1; | |
| 190 return 0; | |
| 191 } | |
| 192 if(t == 16) { | |
| 193 t2 = get_unary(gb); | |
| 194 if(t2 < 2) t += t2; | |
| 195 else t += get_bits(gb, t2 - 1) | (1 << (t2 - 1)); | |
| 196 } | |
| 197 | |
| 198 if(ctx->one){ | |
| 199 ctx->one = t&1; | |
| 200 t = (t>>1) + 1; | |
| 201 }else{ | |
| 202 ctx->one = t&1; | |
| 203 t >>= 1; | |
| 204 } | |
| 205 ctx->zero = !ctx->one; | |
| 206 } | |
| 207 | |
| 208 if(!t){ | |
| 209 base = 0; | |
| 210 add = GET_MED(0) - 1; | |
| 211 DEC_MED(0); | |
| 212 }else if(t == 1){ | |
| 213 base = GET_MED(0); | |
| 214 add = GET_MED(1) - 1; | |
| 215 INC_MED(0); | |
| 216 DEC_MED(1); | |
| 217 }else if(t == 2){ | |
| 218 base = GET_MED(0) + GET_MED(1); | |
| 219 add = GET_MED(2) - 1; | |
| 220 INC_MED(0); | |
| 221 INC_MED(1); | |
| 222 DEC_MED(2); | |
| 223 }else{ | |
| 224 base = GET_MED(0) + GET_MED(1) + GET_MED(2) * (t - 2); | |
| 225 add = GET_MED(2) - 1; | |
| 226 INC_MED(0); | |
| 227 INC_MED(1); | |
| 228 INC_MED(2); | |
| 229 } | |
| 230 ret = base + get_tail(gb, add); | |
| 231 sign = get_bits1(gb); | |
| 232 return sign ? ~ret : ret; | |
| 233 } | |
| 234 | |
| 235 static int wv_unpack_stereo(WavpackContext *s, GetBitContext *gb, int16_t *dst) | |
| 236 { | |
| 237 int i, j, count = 0; | |
| 238 int last, t; | |
|
5482
bba203d5c5e7
Add the handling of the INT32INFO block to the WavPack decoder.
kostya
parents:
4690
diff
changeset
|
239 int A, B, L, L2, R, R2, bit; |
| 3764 | 240 int pos = 0; |
| 241 uint32_t crc = 0xFFFFFFFF; | |
| 242 | |
| 243 s->one = s->zero = s->zeroes = 0; | |
| 244 do{ | |
| 245 L = wv_get_value(s, gb, s->median, &last); | |
| 246 if(last) break; | |
| 247 R = wv_get_value(s, gb, s->median + 3, &last); | |
| 248 if(last) break; | |
| 249 for(i = 0; i < s->terms; i++){ | |
| 250 t = s->decorr[i].value; | |
| 251 j = 0; | |
| 252 if(t > 0){ | |
| 253 if(t > 8){ | |
| 254 if(t & 1){ | |
| 255 A = 2 * s->decorr[i].samplesA[0] - s->decorr[i].samplesA[1]; | |
| 256 B = 2 * s->decorr[i].samplesB[0] - s->decorr[i].samplesB[1]; | |
| 257 }else{ | |
| 258 A = (3 * s->decorr[i].samplesA[0] - s->decorr[i].samplesA[1]) >> 1; | |
| 259 B = (3 * s->decorr[i].samplesB[0] - s->decorr[i].samplesB[1]) >> 1; | |
| 260 } | |
| 261 s->decorr[i].samplesA[1] = s->decorr[i].samplesA[0]; | |
| 262 s->decorr[i].samplesB[1] = s->decorr[i].samplesB[0]; | |
| 263 j = 0; | |
| 264 }else{ | |
| 265 A = s->decorr[i].samplesA[pos]; | |
| 266 B = s->decorr[i].samplesB[pos]; | |
| 267 j = (pos + t) & 7; | |
| 268 } | |
| 269 L2 = L + ((s->decorr[i].weightA * A + 512) >> 10); | |
| 270 R2 = R + ((s->decorr[i].weightB * B + 512) >> 10); | |
| 271 if(A && L) s->decorr[i].weightA -= ((((L ^ A) >> 30) & 2) - 1) * s->decorr[i].delta; | |
| 272 if(B && R) s->decorr[i].weightB -= ((((R ^ B) >> 30) & 2) - 1) * s->decorr[i].delta; | |
| 273 s->decorr[i].samplesA[j] = L = L2; | |
| 274 s->decorr[i].samplesB[j] = R = R2; | |
| 275 }else if(t == -1){ | |
| 276 L2 = L + ((s->decorr[i].weightA * s->decorr[i].samplesA[0] + 512) >> 10); | |
| 277 UPDATE_WEIGHT_CLIP(s->decorr[i].weightA, s->decorr[i].delta, s->decorr[i].samplesA[0], L); | |
| 278 L = L2; | |
| 279 R2 = R + ((s->decorr[i].weightB * L2 + 512) >> 10); | |
| 280 UPDATE_WEIGHT_CLIP(s->decorr[i].weightB, s->decorr[i].delta, L2, R); | |
| 281 R = R2; | |
| 282 s->decorr[i].samplesA[0] = R; | |
| 283 }else{ | |
| 284 R2 = R + ((s->decorr[i].weightB * s->decorr[i].samplesB[0] + 512) >> 10); | |
| 285 UPDATE_WEIGHT_CLIP(s->decorr[i].weightB, s->decorr[i].delta, s->decorr[i].samplesB[0], R); | |
| 286 R = R2; | |
| 287 | |
| 288 if(t == -3){ | |
| 289 R2 = s->decorr[i].samplesA[0]; | |
| 290 s->decorr[i].samplesA[0] = R; | |
| 291 } | |
| 292 | |
| 293 L2 = L + ((s->decorr[i].weightA * R2 + 512) >> 10); | |
| 294 UPDATE_WEIGHT_CLIP(s->decorr[i].weightA, s->decorr[i].delta, R2, L); | |
| 295 L = L2; | |
| 296 s->decorr[i].samplesB[0] = L; | |
| 297 } | |
| 298 } | |
| 299 pos = (pos + 1) & 7; | |
| 300 if(s->joint) | |
| 301 L += (R -= (L >> 1)); | |
| 302 crc = (crc * 3 + L) * 3 + R; | |
|
5482
bba203d5c5e7
Add the handling of the INT32INFO block to the WavPack decoder.
kostya
parents:
4690
diff
changeset
|
303 bit = (L & s->and) | s->or; |
|
bba203d5c5e7
Add the handling of the INT32INFO block to the WavPack decoder.
kostya
parents:
4690
diff
changeset
|
304 *dst++ = ((L + bit) << s->shift) - bit; |
|
bba203d5c5e7
Add the handling of the INT32INFO block to the WavPack decoder.
kostya
parents:
4690
diff
changeset
|
305 bit = (R & s->and) | s->or; |
|
bba203d5c5e7
Add the handling of the INT32INFO block to the WavPack decoder.
kostya
parents:
4690
diff
changeset
|
306 *dst++ = ((R + bit) << s->shift) - bit; |
| 3764 | 307 count++; |
| 308 }while(!last && count < s->samples); | |
| 309 | |
| 310 if(crc != s->CRC){ | |
| 311 av_log(s->avctx, AV_LOG_ERROR, "CRC error\n"); | |
| 312 return -1; | |
| 313 } | |
| 314 return count * 2; | |
| 315 } | |
| 316 | |
| 317 static int wv_unpack_mono(WavpackContext *s, GetBitContext *gb, int16_t *dst) | |
| 318 { | |
| 319 int i, j, count = 0; | |
| 320 int last, t; | |
|
5482
bba203d5c5e7
Add the handling of the INT32INFO block to the WavPack decoder.
kostya
parents:
4690
diff
changeset
|
321 int A, S, T, bit; |
| 3764 | 322 int pos = 0; |
| 323 uint32_t crc = 0xFFFFFFFF; | |
| 324 | |
| 325 s->one = s->zero = s->zeroes = 0; | |
| 326 do{ | |
| 327 T = wv_get_value(s, gb, s->median, &last); | |
| 328 S = 0; | |
| 329 if(last) break; | |
| 330 for(i = 0; i < s->terms; i++){ | |
| 331 t = s->decorr[i].value; | |
| 332 if(t > 8){ | |
| 333 if(t & 1) | |
| 334 A = 2 * s->decorr[i].samplesA[0] - s->decorr[i].samplesA[1]; | |
| 335 else | |
| 336 A = (3 * s->decorr[i].samplesA[0] - s->decorr[i].samplesA[1]) >> 1; | |
| 337 s->decorr[i].samplesA[1] = s->decorr[i].samplesA[0]; | |
| 338 j = 0; | |
| 339 }else{ | |
| 340 A = s->decorr[i].samplesA[pos]; | |
| 341 j = (pos + t) & 7; | |
| 342 } | |
| 343 S = T + ((s->decorr[i].weightA * A + 512) >> 10); | |
| 344 if(A && T) s->decorr[i].weightA -= ((((T ^ A) >> 30) & 2) - 1) * s->decorr[i].delta; | |
| 345 s->decorr[i].samplesA[j] = T = S; | |
| 346 } | |
| 347 pos = (pos + 1) & 7; | |
| 348 crc = crc * 3 + S; | |
|
5482
bba203d5c5e7
Add the handling of the INT32INFO block to the WavPack decoder.
kostya
parents:
4690
diff
changeset
|
349 bit = (S & s->and) | s->or; |
|
bba203d5c5e7
Add the handling of the INT32INFO block to the WavPack decoder.
kostya
parents:
4690
diff
changeset
|
350 *dst++ = ((S + bit) << s->shift) - bit; |
| 3764 | 351 count++; |
| 352 }while(!last && count < s->samples); | |
| 353 | |
| 354 if(crc != s->CRC){ | |
| 355 av_log(s->avctx, AV_LOG_ERROR, "CRC error\n"); | |
| 356 return -1; | |
| 357 } | |
| 358 return count; | |
| 359 } | |
| 360 | |
| 361 static int wavpack_decode_init(AVCodecContext *avctx) | |
| 362 { | |
| 363 WavpackContext *s = avctx->priv_data; | |
| 364 | |
| 365 s->avctx = avctx; | |
| 366 s->stereo = (avctx->channels == 2); | |
| 367 | |
| 368 return 0; | |
| 369 } | |
| 370 | |
| 371 static int wavpack_decode_close(AVCodecContext *avctx) | |
| 372 { | |
| 373 // WavpackContext *s = avctx->priv_data; | |
| 374 | |
| 375 return 0; | |
| 376 } | |
| 377 | |
| 378 static int wavpack_decode_frame(AVCodecContext *avctx, | |
| 379 void *data, int *data_size, | |
| 380 uint8_t *buf, int buf_size) | |
| 381 { | |
| 382 WavpackContext *s = avctx->priv_data; | |
| 383 int16_t *samples = data; | |
| 384 int samplecount; | |
| 385 int got_terms = 0, got_weights = 0, got_samples = 0, got_entropy = 0, got_bs = 0; | |
| 386 uint8_t* buf_end = buf + buf_size; | |
| 387 int i, j, id, size, ssize, weights, t; | |
| 388 | |
| 4690 | 389 if (buf_size == 0){ |
| 390 *data_size = 0; | |
| 391 return 0; | |
| 392 } | |
| 3764 | 393 |
| 394 memset(s->decorr, 0, MAX_TERMS * sizeof(Decorr)); | |
|
5482
bba203d5c5e7
Add the handling of the INT32INFO block to the WavPack decoder.
kostya
parents:
4690
diff
changeset
|
395 s->and = s->or = s->shift = 0; |
| 3764 | 396 |
| 4364 | 397 s->samples = AV_RL32(buf); buf += 4; |
| 4690 | 398 if(!s->samples){ |
| 399 *data_size = 0; | |
| 400 return buf_size; | |
| 401 } | |
| 4017 | 402 /* should not happen but who knows */ |
| 4690 | 403 if(s->samples * 2 * avctx->channels > *data_size){ |
| 4017 | 404 av_log(avctx, AV_LOG_ERROR, "Packet size is too big to be handled in lavc!\n"); |
| 405 return -1; | |
| 406 } | |
| 4364 | 407 s->joint = AV_RL32(buf) & WV_JOINT; buf += 4; |
| 408 s->CRC = AV_RL32(buf); buf += 4; | |
| 3764 | 409 // parse metadata blocks |
| 410 while(buf < buf_end){ | |
| 411 id = *buf++; | |
| 412 size = *buf++; | |
| 413 if(id & WP_IDF_LONG) { | |
| 414 size |= (*buf++) << 8; | |
| 415 size |= (*buf++) << 16; | |
| 416 } | |
| 417 size <<= 1; // size is specified in words | |
| 418 ssize = size; | |
| 419 if(id & WP_IDF_ODD) size--; | |
| 420 if(size < 0){ | |
| 421 av_log(avctx, AV_LOG_ERROR, "Got incorrect block %02X with size %i\n", id, size); | |
| 422 break; | |
| 423 } | |
| 424 if(buf + ssize > buf_end){ | |
| 425 av_log(avctx, AV_LOG_ERROR, "Block size %i is out of bounds\n", size); | |
| 426 break; | |
| 427 } | |
| 428 if(id & WP_IDF_IGNORE){ | |
| 429 buf += ssize; | |
| 430 continue; | |
| 431 } | |
| 432 switch(id & WP_IDF_MASK){ | |
| 433 case WP_ID_DECTERMS: | |
| 434 s->terms = size; | |
| 435 if(s->terms > MAX_TERMS){ | |
| 436 av_log(avctx, AV_LOG_ERROR, "Too many decorrelation terms\n"); | |
| 437 buf += ssize; | |
| 438 continue; | |
| 439 } | |
| 440 for(i = 0; i < s->terms; i++) { | |
| 441 s->decorr[s->terms - i - 1].value = (*buf & 0x1F) - 5; | |
| 442 s->decorr[s->terms - i - 1].delta = *buf >> 5; | |
| 443 buf++; | |
| 444 } | |
| 445 got_terms = 1; | |
| 446 break; | |
| 447 case WP_ID_DECWEIGHTS: | |
| 448 if(!got_terms){ | |
| 449 av_log(avctx, AV_LOG_ERROR, "No decorrelation terms met\n"); | |
| 450 continue; | |
| 451 } | |
| 452 weights = size >> s->stereo; | |
| 453 if(weights > MAX_TERMS || weights > s->terms){ | |
| 454 av_log(avctx, AV_LOG_ERROR, "Too many decorrelation weights\n"); | |
| 455 buf += ssize; | |
| 456 continue; | |
| 457 } | |
| 458 for(i = 0; i < weights; i++) { | |
| 459 t = (int8_t)(*buf++); | |
| 460 s->decorr[s->terms - i - 1].weightA = t << 3; | |
| 461 if(s->decorr[s->terms - i - 1].weightA > 0) | |
| 462 s->decorr[s->terms - i - 1].weightA += (s->decorr[s->terms - i - 1].weightA + 64) >> 7; | |
| 463 if(s->stereo){ | |
| 464 t = (int8_t)(*buf++); | |
| 465 s->decorr[s->terms - i - 1].weightB = t << 3; | |
| 466 if(s->decorr[s->terms - i - 1].weightB > 0) | |
| 467 s->decorr[s->terms - i - 1].weightB += (s->decorr[s->terms - i - 1].weightB + 64) >> 7; | |
| 468 } | |
| 469 } | |
| 470 got_weights = 1; | |
| 471 break; | |
| 472 case WP_ID_DECSAMPLES: | |
| 473 if(!got_terms){ | |
| 474 av_log(avctx, AV_LOG_ERROR, "No decorrelation terms met\n"); | |
| 475 continue; | |
| 476 } | |
| 477 t = 0; | |
| 478 for(i = s->terms - 1; (i >= 0) && (t < size); i--) { | |
| 479 if(s->decorr[i].value > 8){ | |
| 4364 | 480 s->decorr[i].samplesA[0] = wp_exp2(AV_RL16(buf)); buf += 2; |
| 481 s->decorr[i].samplesA[1] = wp_exp2(AV_RL16(buf)); buf += 2; | |
| 3764 | 482 if(s->stereo){ |
| 4364 | 483 s->decorr[i].samplesB[0] = wp_exp2(AV_RL16(buf)); buf += 2; |
| 484 s->decorr[i].samplesB[1] = wp_exp2(AV_RL16(buf)); buf += 2; | |
| 3764 | 485 t += 4; |
| 486 } | |
| 487 t += 4; | |
| 488 }else if(s->decorr[i].value < 0){ | |
| 4364 | 489 s->decorr[i].samplesA[0] = wp_exp2(AV_RL16(buf)); buf += 2; |
| 490 s->decorr[i].samplesB[0] = wp_exp2(AV_RL16(buf)); buf += 2; | |
| 3764 | 491 t += 4; |
| 492 }else{ | |
| 493 for(j = 0; j < s->decorr[i].value; j++){ | |
| 4364 | 494 s->decorr[i].samplesA[j] = wp_exp2(AV_RL16(buf)); buf += 2; |
| 3764 | 495 if(s->stereo){ |
| 4364 | 496 s->decorr[i].samplesB[j] = wp_exp2(AV_RL16(buf)); buf += 2; |
| 3764 | 497 } |
| 498 } | |
| 499 t += s->decorr[i].value * 2 * avctx->channels; | |
| 500 } | |
| 501 } | |
| 502 got_samples = 1; | |
| 503 break; | |
| 504 case WP_ID_ENTROPY: | |
| 505 if(size != 6 * avctx->channels){ | |
| 506 av_log(avctx, AV_LOG_ERROR, "Entropy vars size should be %i, got %i", 6 * avctx->channels, size); | |
| 507 buf += ssize; | |
| 508 continue; | |
| 509 } | |
| 510 for(i = 0; i < 3 * avctx->channels; i++){ | |
| 4364 | 511 s->median[i] = wp_exp2(AV_RL16(buf)); |
| 3764 | 512 buf += 2; |
| 513 } | |
| 514 got_entropy = 1; | |
| 515 break; | |
|
5482
bba203d5c5e7
Add the handling of the INT32INFO block to the WavPack decoder.
kostya
parents:
4690
diff
changeset
|
516 case WP_ID_INT32INFO: |
|
bba203d5c5e7
Add the handling of the INT32INFO block to the WavPack decoder.
kostya
parents:
4690
diff
changeset
|
517 if(size != 4 || *buf){ |
|
bba203d5c5e7
Add the handling of the INT32INFO block to the WavPack decoder.
kostya
parents:
4690
diff
changeset
|
518 av_log(avctx, AV_LOG_ERROR, "Invalid INT32INFO, size = %i, sent_bits = %i\n", size, *buf); |
|
bba203d5c5e7
Add the handling of the INT32INFO block to the WavPack decoder.
kostya
parents:
4690
diff
changeset
|
519 buf += ssize; |
|
bba203d5c5e7
Add the handling of the INT32INFO block to the WavPack decoder.
kostya
parents:
4690
diff
changeset
|
520 continue; |
|
bba203d5c5e7
Add the handling of the INT32INFO block to the WavPack decoder.
kostya
parents:
4690
diff
changeset
|
521 } |
|
bba203d5c5e7
Add the handling of the INT32INFO block to the WavPack decoder.
kostya
parents:
4690
diff
changeset
|
522 if(buf[1]) |
|
bba203d5c5e7
Add the handling of the INT32INFO block to the WavPack decoder.
kostya
parents:
4690
diff
changeset
|
523 s->shift = buf[1]; |
|
bba203d5c5e7
Add the handling of the INT32INFO block to the WavPack decoder.
kostya
parents:
4690
diff
changeset
|
524 else if(buf[2]){ |
|
bba203d5c5e7
Add the handling of the INT32INFO block to the WavPack decoder.
kostya
parents:
4690
diff
changeset
|
525 s->and = s->or = 1; |
|
bba203d5c5e7
Add the handling of the INT32INFO block to the WavPack decoder.
kostya
parents:
4690
diff
changeset
|
526 s->shift = buf[2]; |
|
bba203d5c5e7
Add the handling of the INT32INFO block to the WavPack decoder.
kostya
parents:
4690
diff
changeset
|
527 }else if(buf[3]){ |
|
bba203d5c5e7
Add the handling of the INT32INFO block to the WavPack decoder.
kostya
parents:
4690
diff
changeset
|
528 s->and = 1; |
|
bba203d5c5e7
Add the handling of the INT32INFO block to the WavPack decoder.
kostya
parents:
4690
diff
changeset
|
529 s->shift = buf[3]; |
|
bba203d5c5e7
Add the handling of the INT32INFO block to the WavPack decoder.
kostya
parents:
4690
diff
changeset
|
530 } |
|
bba203d5c5e7
Add the handling of the INT32INFO block to the WavPack decoder.
kostya
parents:
4690
diff
changeset
|
531 buf += 4; |
|
bba203d5c5e7
Add the handling of the INT32INFO block to the WavPack decoder.
kostya
parents:
4690
diff
changeset
|
532 break; |
| 3764 | 533 case WP_ID_DATA: |
| 534 init_get_bits(&s->gb, buf, size * 8); | |
| 535 s->data_size = size * 8; | |
| 536 buf += size; | |
| 537 got_bs = 1; | |
| 538 break; | |
| 539 default: | |
| 540 buf += size; | |
| 541 } | |
| 542 if(id & WP_IDF_ODD) buf++; | |
| 543 } | |
| 544 if(!got_terms){ | |
| 545 av_log(avctx, AV_LOG_ERROR, "No block with decorrelation terms\n"); | |
| 546 return -1; | |
| 547 } | |
| 548 if(!got_weights){ | |
| 549 av_log(avctx, AV_LOG_ERROR, "No block with decorrelation weights\n"); | |
| 550 return -1; | |
| 551 } | |
| 552 if(!got_samples){ | |
| 553 av_log(avctx, AV_LOG_ERROR, "No block with decorrelation samples\n"); | |
| 554 return -1; | |
| 555 } | |
| 556 if(!got_entropy){ | |
| 557 av_log(avctx, AV_LOG_ERROR, "No block with entropy info\n"); | |
| 558 return -1; | |
| 559 } | |
| 560 if(!got_bs){ | |
| 561 av_log(avctx, AV_LOG_ERROR, "Packed samples not found\n"); | |
| 562 return -1; | |
| 563 } | |
| 564 | |
| 565 if(s->stereo) | |
| 566 samplecount = wv_unpack_stereo(s, &s->gb, samples); | |
| 567 else | |
| 568 samplecount = wv_unpack_mono(s, &s->gb, samples); | |
| 569 *data_size = samplecount * 2; | |
| 570 | |
| 571 return buf_size; | |
| 572 } | |
| 573 | |
| 574 AVCodec wavpack_decoder = { | |
| 575 "wavpack", | |
| 576 CODEC_TYPE_AUDIO, | |
| 577 CODEC_ID_WAVPACK, | |
| 578 sizeof(WavpackContext), | |
| 579 wavpack_decode_init, | |
| 580 NULL, | |
| 581 wavpack_decode_close, | |
| 582 wavpack_decode_frame, | |
| 583 }; |
