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.

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