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.

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