You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

584 lines
19KB

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