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.

578 lines
18KB

  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. // macros for manipulating median values
  106. #define GET_MED(n) ((median[n] >> 4) + 1)
  107. #define DEC_MED(n) median[n] -= ((median[n] + (128>>n) - 2) / (128>>n)) * 2
  108. #define INC_MED(n) median[n] += ((median[n] + (128>>n)) / (128>>n)) * 5
  109. // macros for applying weight
  110. #define UPDATE_WEIGHT_CLIP(weight, delta, samples, in) \
  111. if(samples && in){ \
  112. if((samples ^ in) < 0){ \
  113. weight -= delta; \
  114. if(weight < -1024) weight = -1024; \
  115. }else{ \
  116. weight += delta; \
  117. if(weight > 1024) weight = 1024; \
  118. } \
  119. }
  120. static av_always_inline int get_tail(GetBitContext *gb, int k)
  121. {
  122. int p, e, res;
  123. if(k<1)return 0;
  124. p = av_log2(k);
  125. e = (1 << (p + 1)) - k - 1;
  126. res = p ? get_bits(gb, p) : 0;
  127. if(res >= e){
  128. res = (res<<1) - e + get_bits1(gb);
  129. }
  130. return res;
  131. }
  132. static int wv_get_value(WavpackContext *ctx, GetBitContext *gb, int *median, int *last)
  133. {
  134. int t, t2;
  135. int sign, base, add, ret;
  136. *last = 0;
  137. if((ctx->median[0] < 2U) && (ctx->median[3] < 2U) && !ctx->zero && !ctx->one){
  138. if(ctx->zeroes){
  139. ctx->zeroes--;
  140. if(ctx->zeroes)
  141. return 0;
  142. }else{
  143. t = get_unary(gb, 0, 33);
  144. if(t >= 2) t = get_bits(gb, t - 1) | (1 << (t-1));
  145. ctx->zeroes = t;
  146. if(ctx->zeroes){
  147. memset(ctx->median, 0, sizeof(ctx->median));
  148. return 0;
  149. }
  150. }
  151. }
  152. if(get_bits_count(gb) >= ctx->data_size){
  153. *last = 1;
  154. return 0;
  155. }
  156. if(ctx->zero){
  157. t = 0;
  158. ctx->zero = 0;
  159. }else{
  160. t = get_unary(gb, 0, 33);
  161. if(get_bits_count(gb) >= ctx->data_size){
  162. *last = 1;
  163. return 0;
  164. }
  165. if(t == 16) {
  166. t2 = get_unary(gb, 0, 33);
  167. if(t2 < 2) t += t2;
  168. else t += get_bits(gb, t2 - 1) | (1 << (t2 - 1));
  169. }
  170. if(ctx->one){
  171. ctx->one = t&1;
  172. t = (t>>1) + 1;
  173. }else{
  174. ctx->one = t&1;
  175. t >>= 1;
  176. }
  177. ctx->zero = !ctx->one;
  178. }
  179. if(!t){
  180. base = 0;
  181. add = GET_MED(0) - 1;
  182. DEC_MED(0);
  183. }else if(t == 1){
  184. base = GET_MED(0);
  185. add = GET_MED(1) - 1;
  186. INC_MED(0);
  187. DEC_MED(1);
  188. }else if(t == 2){
  189. base = GET_MED(0) + GET_MED(1);
  190. add = GET_MED(2) - 1;
  191. INC_MED(0);
  192. INC_MED(1);
  193. DEC_MED(2);
  194. }else{
  195. base = GET_MED(0) + GET_MED(1) + GET_MED(2) * (t - 2);
  196. add = GET_MED(2) - 1;
  197. INC_MED(0);
  198. INC_MED(1);
  199. INC_MED(2);
  200. }
  201. ret = base + get_tail(gb, add);
  202. sign = get_bits1(gb);
  203. return sign ? ~ret : ret;
  204. }
  205. static int wv_unpack_stereo(WavpackContext *s, GetBitContext *gb, int16_t *dst)
  206. {
  207. int i, j, count = 0;
  208. int last, t;
  209. int A, B, L, L2, R, R2, bit;
  210. int pos = 0;
  211. uint32_t crc = 0xFFFFFFFF;
  212. s->one = s->zero = s->zeroes = 0;
  213. do{
  214. L = wv_get_value(s, gb, s->median, &last);
  215. if(last) break;
  216. R = wv_get_value(s, gb, s->median + 3, &last);
  217. if(last) break;
  218. for(i = 0; i < s->terms; i++){
  219. t = s->decorr[i].value;
  220. j = 0;
  221. if(t > 0){
  222. if(t > 8){
  223. if(t & 1){
  224. A = 2 * s->decorr[i].samplesA[0] - s->decorr[i].samplesA[1];
  225. B = 2 * s->decorr[i].samplesB[0] - s->decorr[i].samplesB[1];
  226. }else{
  227. A = (3 * s->decorr[i].samplesA[0] - s->decorr[i].samplesA[1]) >> 1;
  228. B = (3 * s->decorr[i].samplesB[0] - s->decorr[i].samplesB[1]) >> 1;
  229. }
  230. s->decorr[i].samplesA[1] = s->decorr[i].samplesA[0];
  231. s->decorr[i].samplesB[1] = s->decorr[i].samplesB[0];
  232. j = 0;
  233. }else{
  234. A = s->decorr[i].samplesA[pos];
  235. B = s->decorr[i].samplesB[pos];
  236. j = (pos + t) & 7;
  237. }
  238. L2 = L + ((s->decorr[i].weightA * A + 512) >> 10);
  239. R2 = R + ((s->decorr[i].weightB * B + 512) >> 10);
  240. if(A && L) s->decorr[i].weightA -= ((((L ^ A) >> 30) & 2) - 1) * s->decorr[i].delta;
  241. if(B && R) s->decorr[i].weightB -= ((((R ^ B) >> 30) & 2) - 1) * s->decorr[i].delta;
  242. s->decorr[i].samplesA[j] = L = L2;
  243. s->decorr[i].samplesB[j] = R = R2;
  244. }else if(t == -1){
  245. L2 = L + ((s->decorr[i].weightA * s->decorr[i].samplesA[0] + 512) >> 10);
  246. UPDATE_WEIGHT_CLIP(s->decorr[i].weightA, s->decorr[i].delta, s->decorr[i].samplesA[0], L);
  247. L = L2;
  248. R2 = R + ((s->decorr[i].weightB * L2 + 512) >> 10);
  249. UPDATE_WEIGHT_CLIP(s->decorr[i].weightB, s->decorr[i].delta, L2, R);
  250. R = R2;
  251. s->decorr[i].samplesA[0] = R;
  252. }else{
  253. R2 = R + ((s->decorr[i].weightB * s->decorr[i].samplesB[0] + 512) >> 10);
  254. UPDATE_WEIGHT_CLIP(s->decorr[i].weightB, s->decorr[i].delta, s->decorr[i].samplesB[0], R);
  255. R = R2;
  256. if(t == -3){
  257. R2 = s->decorr[i].samplesA[0];
  258. s->decorr[i].samplesA[0] = R;
  259. }
  260. L2 = L + ((s->decorr[i].weightA * R2 + 512) >> 10);
  261. UPDATE_WEIGHT_CLIP(s->decorr[i].weightA, s->decorr[i].delta, R2, L);
  262. L = L2;
  263. s->decorr[i].samplesB[0] = L;
  264. }
  265. }
  266. pos = (pos + 1) & 7;
  267. if(s->joint)
  268. L += (R -= (L >> 1));
  269. crc = (crc * 3 + L) * 3 + R;
  270. bit = (L & s->and) | s->or;
  271. *dst++ = ((L + bit) << s->shift) - bit;
  272. bit = (R & s->and) | s->or;
  273. *dst++ = ((R + bit) << s->shift) - bit;
  274. count++;
  275. }while(!last && count < s->samples);
  276. if(crc != s->CRC){
  277. av_log(s->avctx, AV_LOG_ERROR, "CRC error\n");
  278. return -1;
  279. }
  280. return count * 2;
  281. }
  282. static int wv_unpack_mono(WavpackContext *s, GetBitContext *gb, int16_t *dst)
  283. {
  284. int i, j, count = 0;
  285. int last, t;
  286. int A, S, T, bit;
  287. int pos = 0;
  288. uint32_t crc = 0xFFFFFFFF;
  289. s->one = s->zero = s->zeroes = 0;
  290. do{
  291. T = wv_get_value(s, gb, s->median, &last);
  292. S = 0;
  293. if(last) break;
  294. for(i = 0; i < s->terms; i++){
  295. t = s->decorr[i].value;
  296. if(t > 8){
  297. if(t & 1)
  298. A = 2 * s->decorr[i].samplesA[0] - s->decorr[i].samplesA[1];
  299. else
  300. A = (3 * s->decorr[i].samplesA[0] - s->decorr[i].samplesA[1]) >> 1;
  301. s->decorr[i].samplesA[1] = s->decorr[i].samplesA[0];
  302. j = 0;
  303. }else{
  304. A = s->decorr[i].samplesA[pos];
  305. j = (pos + t) & 7;
  306. }
  307. S = T + ((s->decorr[i].weightA * A + 512) >> 10);
  308. if(A && T) s->decorr[i].weightA -= ((((T ^ A) >> 30) & 2) - 1) * s->decorr[i].delta;
  309. s->decorr[i].samplesA[j] = T = S;
  310. }
  311. pos = (pos + 1) & 7;
  312. crc = crc * 3 + S;
  313. bit = (S & s->and) | s->or;
  314. *dst++ = ((S + bit) << s->shift) - bit;
  315. count++;
  316. }while(!last && count < s->samples);
  317. if(crc != s->CRC){
  318. av_log(s->avctx, AV_LOG_ERROR, "CRC error\n");
  319. return -1;
  320. }
  321. return count;
  322. }
  323. static int wavpack_decode_init(AVCodecContext *avctx)
  324. {
  325. WavpackContext *s = avctx->priv_data;
  326. s->avctx = avctx;
  327. s->stereo = (avctx->channels == 2);
  328. return 0;
  329. }
  330. static int wavpack_decode_close(AVCodecContext *avctx)
  331. {
  332. // WavpackContext *s = avctx->priv_data;
  333. return 0;
  334. }
  335. static int wavpack_decode_frame(AVCodecContext *avctx,
  336. void *data, int *data_size,
  337. uint8_t *buf, int buf_size)
  338. {
  339. WavpackContext *s = avctx->priv_data;
  340. int16_t *samples = data;
  341. int samplecount;
  342. int got_terms = 0, got_weights = 0, got_samples = 0, got_entropy = 0, got_bs = 0;
  343. uint8_t* buf_end = buf + buf_size;
  344. int i, j, id, size, ssize, weights, t;
  345. if (buf_size == 0){
  346. *data_size = 0;
  347. return 0;
  348. }
  349. memset(s->decorr, 0, MAX_TERMS * sizeof(Decorr));
  350. s->and = s->or = s->shift = 0;
  351. s->samples = AV_RL32(buf); buf += 4;
  352. if(!s->samples){
  353. *data_size = 0;
  354. return buf_size;
  355. }
  356. /* should not happen but who knows */
  357. if(s->samples * 2 * avctx->channels > *data_size){
  358. av_log(avctx, AV_LOG_ERROR, "Packet size is too big to be handled in lavc!\n");
  359. return -1;
  360. }
  361. s->joint = AV_RL32(buf) & WV_JOINT; buf += 4;
  362. s->CRC = AV_RL32(buf); buf += 4;
  363. // parse metadata blocks
  364. while(buf < buf_end){
  365. id = *buf++;
  366. size = *buf++;
  367. if(id & WP_IDF_LONG) {
  368. size |= (*buf++) << 8;
  369. size |= (*buf++) << 16;
  370. }
  371. size <<= 1; // size is specified in words
  372. ssize = size;
  373. if(id & WP_IDF_ODD) size--;
  374. if(size < 0){
  375. av_log(avctx, AV_LOG_ERROR, "Got incorrect block %02X with size %i\n", id, size);
  376. break;
  377. }
  378. if(buf + ssize > buf_end){
  379. av_log(avctx, AV_LOG_ERROR, "Block size %i is out of bounds\n", size);
  380. break;
  381. }
  382. if(id & WP_IDF_IGNORE){
  383. buf += ssize;
  384. continue;
  385. }
  386. switch(id & WP_IDF_MASK){
  387. case WP_ID_DECTERMS:
  388. s->terms = size;
  389. if(s->terms > MAX_TERMS){
  390. av_log(avctx, AV_LOG_ERROR, "Too many decorrelation terms\n");
  391. buf += ssize;
  392. continue;
  393. }
  394. for(i = 0; i < s->terms; i++) {
  395. s->decorr[s->terms - i - 1].value = (*buf & 0x1F) - 5;
  396. s->decorr[s->terms - i - 1].delta = *buf >> 5;
  397. buf++;
  398. }
  399. got_terms = 1;
  400. break;
  401. case WP_ID_DECWEIGHTS:
  402. if(!got_terms){
  403. av_log(avctx, AV_LOG_ERROR, "No decorrelation terms met\n");
  404. continue;
  405. }
  406. weights = size >> s->stereo;
  407. if(weights > MAX_TERMS || weights > s->terms){
  408. av_log(avctx, AV_LOG_ERROR, "Too many decorrelation weights\n");
  409. buf += ssize;
  410. continue;
  411. }
  412. for(i = 0; i < weights; i++) {
  413. t = (int8_t)(*buf++);
  414. s->decorr[s->terms - i - 1].weightA = t << 3;
  415. if(s->decorr[s->terms - i - 1].weightA > 0)
  416. s->decorr[s->terms - i - 1].weightA += (s->decorr[s->terms - i - 1].weightA + 64) >> 7;
  417. if(s->stereo){
  418. t = (int8_t)(*buf++);
  419. s->decorr[s->terms - i - 1].weightB = t << 3;
  420. if(s->decorr[s->terms - i - 1].weightB > 0)
  421. s->decorr[s->terms - i - 1].weightB += (s->decorr[s->terms - i - 1].weightB + 64) >> 7;
  422. }
  423. }
  424. got_weights = 1;
  425. break;
  426. case WP_ID_DECSAMPLES:
  427. if(!got_terms){
  428. av_log(avctx, AV_LOG_ERROR, "No decorrelation terms met\n");
  429. continue;
  430. }
  431. t = 0;
  432. for(i = s->terms - 1; (i >= 0) && (t < size); i--) {
  433. if(s->decorr[i].value > 8){
  434. s->decorr[i].samplesA[0] = wp_exp2(AV_RL16(buf)); buf += 2;
  435. s->decorr[i].samplesA[1] = wp_exp2(AV_RL16(buf)); buf += 2;
  436. if(s->stereo){
  437. s->decorr[i].samplesB[0] = wp_exp2(AV_RL16(buf)); buf += 2;
  438. s->decorr[i].samplesB[1] = wp_exp2(AV_RL16(buf)); buf += 2;
  439. t += 4;
  440. }
  441. t += 4;
  442. }else if(s->decorr[i].value < 0){
  443. s->decorr[i].samplesA[0] = wp_exp2(AV_RL16(buf)); buf += 2;
  444. s->decorr[i].samplesB[0] = wp_exp2(AV_RL16(buf)); buf += 2;
  445. t += 4;
  446. }else{
  447. for(j = 0; j < s->decorr[i].value; j++){
  448. s->decorr[i].samplesA[j] = wp_exp2(AV_RL16(buf)); buf += 2;
  449. if(s->stereo){
  450. s->decorr[i].samplesB[j] = wp_exp2(AV_RL16(buf)); buf += 2;
  451. }
  452. }
  453. t += s->decorr[i].value * 2 * avctx->channels;
  454. }
  455. }
  456. got_samples = 1;
  457. break;
  458. case WP_ID_ENTROPY:
  459. if(size != 6 * avctx->channels){
  460. av_log(avctx, AV_LOG_ERROR, "Entropy vars size should be %i, got %i", 6 * avctx->channels, size);
  461. buf += ssize;
  462. continue;
  463. }
  464. for(i = 0; i < 3 * avctx->channels; i++){
  465. s->median[i] = wp_exp2(AV_RL16(buf));
  466. buf += 2;
  467. }
  468. got_entropy = 1;
  469. break;
  470. case WP_ID_INT32INFO:
  471. if(size != 4 || *buf){
  472. av_log(avctx, AV_LOG_ERROR, "Invalid INT32INFO, size = %i, sent_bits = %i\n", size, *buf);
  473. buf += ssize;
  474. continue;
  475. }
  476. if(buf[1])
  477. s->shift = buf[1];
  478. else if(buf[2]){
  479. s->and = s->or = 1;
  480. s->shift = buf[2];
  481. }else if(buf[3]){
  482. s->and = 1;
  483. s->shift = buf[3];
  484. }
  485. buf += 4;
  486. break;
  487. case WP_ID_DATA:
  488. init_get_bits(&s->gb, buf, size * 8);
  489. s->data_size = size * 8;
  490. buf += size;
  491. got_bs = 1;
  492. break;
  493. default:
  494. buf += size;
  495. }
  496. if(id & WP_IDF_ODD) buf++;
  497. }
  498. if(!got_terms){
  499. av_log(avctx, AV_LOG_ERROR, "No block with decorrelation terms\n");
  500. return -1;
  501. }
  502. if(!got_weights){
  503. av_log(avctx, AV_LOG_ERROR, "No block with decorrelation weights\n");
  504. return -1;
  505. }
  506. if(!got_samples){
  507. av_log(avctx, AV_LOG_ERROR, "No block with decorrelation samples\n");
  508. return -1;
  509. }
  510. if(!got_entropy){
  511. av_log(avctx, AV_LOG_ERROR, "No block with entropy info\n");
  512. return -1;
  513. }
  514. if(!got_bs){
  515. av_log(avctx, AV_LOG_ERROR, "Packed samples not found\n");
  516. return -1;
  517. }
  518. if(s->stereo)
  519. samplecount = wv_unpack_stereo(s, &s->gb, samples);
  520. else
  521. samplecount = wv_unpack_mono(s, &s->gb, samples);
  522. *data_size = samplecount * 2;
  523. return buf_size;
  524. }
  525. AVCodec wavpack_decoder = {
  526. "wavpack",
  527. CODEC_TYPE_AUDIO,
  528. CODEC_ID_WAVPACK,
  529. sizeof(WavpackContext),
  530. wavpack_decode_init,
  531. NULL,
  532. wavpack_decode_close,
  533. wavpack_decode_frame,
  534. };