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.

883 lines
30KB

  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 "get_bits.h"
  24. #include "unary.h"
  25. /**
  26. * @file libavcodec/wavpack.c
  27. * WavPack lossless audio decoder
  28. */
  29. #define WV_MONO 0x00000004
  30. #define WV_JOINT_STEREO 0x00000010
  31. #define WV_FALSE_STEREO 0x40000000
  32. #define WV_HYBRID_MODE 0x00000008
  33. #define WV_HYBRID_SHAPE 0x00000008
  34. #define WV_HYBRID_BITRATE 0x00000200
  35. #define WV_HYBRID_BALANCE 0x00000400
  36. enum WP_ID_Flags{
  37. WP_IDF_MASK = 0x1F,
  38. WP_IDF_IGNORE = 0x20,
  39. WP_IDF_ODD = 0x40,
  40. WP_IDF_LONG = 0x80
  41. };
  42. enum WP_ID{
  43. WP_ID_DUMMY = 0,
  44. WP_ID_ENCINFO,
  45. WP_ID_DECTERMS,
  46. WP_ID_DECWEIGHTS,
  47. WP_ID_DECSAMPLES,
  48. WP_ID_ENTROPY,
  49. WP_ID_HYBRID,
  50. WP_ID_SHAPING,
  51. WP_ID_FLOATINFO,
  52. WP_ID_INT32INFO,
  53. WP_ID_DATA,
  54. WP_ID_CORR,
  55. WP_ID_FLT,
  56. WP_ID_CHANINFO
  57. };
  58. #define MAX_TERMS 16
  59. typedef struct Decorr {
  60. int delta;
  61. int value;
  62. int weightA;
  63. int weightB;
  64. int samplesA[8];
  65. int samplesB[8];
  66. } Decorr;
  67. typedef struct WvChannel {
  68. int median[3];
  69. int slow_level, error_limit;
  70. int bitrate_acc, bitrate_delta;
  71. } WvChannel;
  72. typedef struct WavpackContext {
  73. AVCodecContext *avctx;
  74. int frame_flags;
  75. int stereo, stereo_in;
  76. int joint;
  77. uint32_t CRC;
  78. GetBitContext gb;
  79. int data_size; // in bits
  80. int samples;
  81. int terms;
  82. Decorr decorr[MAX_TERMS];
  83. int zero, one, zeroes;
  84. int and, or, shift;
  85. int post_shift;
  86. int hybrid, hybrid_bitrate;
  87. WvChannel ch[2];
  88. } WavpackContext;
  89. // exponent table copied from WavPack source
  90. static const uint8_t wp_exp2_table [256] = {
  91. 0x00, 0x01, 0x01, 0x02, 0x03, 0x03, 0x04, 0x05, 0x06, 0x06, 0x07, 0x08, 0x08, 0x09, 0x0a, 0x0b,
  92. 0x0b, 0x0c, 0x0d, 0x0e, 0x0e, 0x0f, 0x10, 0x10, 0x11, 0x12, 0x13, 0x13, 0x14, 0x15, 0x16, 0x16,
  93. 0x17, 0x18, 0x19, 0x19, 0x1a, 0x1b, 0x1c, 0x1d, 0x1d, 0x1e, 0x1f, 0x20, 0x20, 0x21, 0x22, 0x23,
  94. 0x24, 0x24, 0x25, 0x26, 0x27, 0x28, 0x28, 0x29, 0x2a, 0x2b, 0x2c, 0x2c, 0x2d, 0x2e, 0x2f, 0x30,
  95. 0x30, 0x31, 0x32, 0x33, 0x34, 0x35, 0x35, 0x36, 0x37, 0x38, 0x39, 0x3a, 0x3a, 0x3b, 0x3c, 0x3d,
  96. 0x3e, 0x3f, 0x40, 0x41, 0x41, 0x42, 0x43, 0x44, 0x45, 0x46, 0x47, 0x48, 0x48, 0x49, 0x4a, 0x4b,
  97. 0x4c, 0x4d, 0x4e, 0x4f, 0x50, 0x51, 0x51, 0x52, 0x53, 0x54, 0x55, 0x56, 0x57, 0x58, 0x59, 0x5a,
  98. 0x5b, 0x5c, 0x5d, 0x5e, 0x5e, 0x5f, 0x60, 0x61, 0x62, 0x63, 0x64, 0x65, 0x66, 0x67, 0x68, 0x69,
  99. 0x6a, 0x6b, 0x6c, 0x6d, 0x6e, 0x6f, 0x70, 0x71, 0x72, 0x73, 0x74, 0x75, 0x76, 0x77, 0x78, 0x79,
  100. 0x7a, 0x7b, 0x7c, 0x7d, 0x7e, 0x7f, 0x80, 0x81, 0x82, 0x83, 0x84, 0x85, 0x87, 0x88, 0x89, 0x8a,
  101. 0x8b, 0x8c, 0x8d, 0x8e, 0x8f, 0x90, 0x91, 0x92, 0x93, 0x95, 0x96, 0x97, 0x98, 0x99, 0x9a, 0x9b,
  102. 0x9c, 0x9d, 0x9f, 0xa0, 0xa1, 0xa2, 0xa3, 0xa4, 0xa5, 0xa6, 0xa8, 0xa9, 0xaa, 0xab, 0xac, 0xad,
  103. 0xaf, 0xb0, 0xb1, 0xb2, 0xb3, 0xb4, 0xb6, 0xb7, 0xb8, 0xb9, 0xba, 0xbc, 0xbd, 0xbe, 0xbf, 0xc0,
  104. 0xc2, 0xc3, 0xc4, 0xc5, 0xc6, 0xc8, 0xc9, 0xca, 0xcb, 0xcd, 0xce, 0xcf, 0xd0, 0xd2, 0xd3, 0xd4,
  105. 0xd6, 0xd7, 0xd8, 0xd9, 0xdb, 0xdc, 0xdd, 0xde, 0xe0, 0xe1, 0xe2, 0xe4, 0xe5, 0xe6, 0xe8, 0xe9,
  106. 0xea, 0xec, 0xed, 0xee, 0xf0, 0xf1, 0xf2, 0xf4, 0xf5, 0xf6, 0xf8, 0xf9, 0xfa, 0xfc, 0xfd, 0xff
  107. };
  108. static const uint8_t wp_log2_table [] = {
  109. 0x00, 0x01, 0x03, 0x04, 0x06, 0x07, 0x09, 0x0a, 0x0b, 0x0d, 0x0e, 0x10, 0x11, 0x12, 0x14, 0x15,
  110. 0x16, 0x18, 0x19, 0x1a, 0x1c, 0x1d, 0x1e, 0x20, 0x21, 0x22, 0x24, 0x25, 0x26, 0x28, 0x29, 0x2a,
  111. 0x2c, 0x2d, 0x2e, 0x2f, 0x31, 0x32, 0x33, 0x34, 0x36, 0x37, 0x38, 0x39, 0x3b, 0x3c, 0x3d, 0x3e,
  112. 0x3f, 0x41, 0x42, 0x43, 0x44, 0x45, 0x47, 0x48, 0x49, 0x4a, 0x4b, 0x4d, 0x4e, 0x4f, 0x50, 0x51,
  113. 0x52, 0x54, 0x55, 0x56, 0x57, 0x58, 0x59, 0x5a, 0x5c, 0x5d, 0x5e, 0x5f, 0x60, 0x61, 0x62, 0x63,
  114. 0x64, 0x66, 0x67, 0x68, 0x69, 0x6a, 0x6b, 0x6c, 0x6d, 0x6e, 0x6f, 0x70, 0x71, 0x72, 0x74, 0x75,
  115. 0x76, 0x77, 0x78, 0x79, 0x7a, 0x7b, 0x7c, 0x7d, 0x7e, 0x7f, 0x80, 0x81, 0x82, 0x83, 0x84, 0x85,
  116. 0x86, 0x87, 0x88, 0x89, 0x8a, 0x8b, 0x8c, 0x8d, 0x8e, 0x8f, 0x90, 0x91, 0x92, 0x93, 0x94, 0x95,
  117. 0x96, 0x97, 0x98, 0x99, 0x9a, 0x9b, 0x9b, 0x9c, 0x9d, 0x9e, 0x9f, 0xa0, 0xa1, 0xa2, 0xa3, 0xa4,
  118. 0xa5, 0xa6, 0xa7, 0xa8, 0xa9, 0xa9, 0xaa, 0xab, 0xac, 0xad, 0xae, 0xaf, 0xb0, 0xb1, 0xb2, 0xb2,
  119. 0xb3, 0xb4, 0xb5, 0xb6, 0xb7, 0xb8, 0xb9, 0xb9, 0xba, 0xbb, 0xbc, 0xbd, 0xbe, 0xbf, 0xc0, 0xc0,
  120. 0xc1, 0xc2, 0xc3, 0xc4, 0xc5, 0xc6, 0xc6, 0xc7, 0xc8, 0xc9, 0xca, 0xcb, 0xcb, 0xcc, 0xcd, 0xce,
  121. 0xcf, 0xd0, 0xd0, 0xd1, 0xd2, 0xd3, 0xd4, 0xd4, 0xd5, 0xd6, 0xd7, 0xd8, 0xd8, 0xd9, 0xda, 0xdb,
  122. 0xdc, 0xdc, 0xdd, 0xde, 0xdf, 0xe0, 0xe0, 0xe1, 0xe2, 0xe3, 0xe4, 0xe4, 0xe5, 0xe6, 0xe7, 0xe7,
  123. 0xe8, 0xe9, 0xea, 0xea, 0xeb, 0xec, 0xed, 0xee, 0xee, 0xef, 0xf0, 0xf1, 0xf1, 0xf2, 0xf3, 0xf4,
  124. 0xf4, 0xf5, 0xf6, 0xf7, 0xf7, 0xf8, 0xf9, 0xf9, 0xfa, 0xfb, 0xfc, 0xfc, 0xfd, 0xfe, 0xff, 0xff
  125. };
  126. static av_always_inline int wp_exp2(int16_t val)
  127. {
  128. int res, neg = 0;
  129. if(val < 0){
  130. val = -val;
  131. neg = 1;
  132. }
  133. res = wp_exp2_table[val & 0xFF] | 0x100;
  134. val >>= 8;
  135. res = (val > 9) ? (res << (val - 9)) : (res >> (9 - val));
  136. return neg ? -res : res;
  137. }
  138. static av_always_inline int wp_log2(int32_t val)
  139. {
  140. int bits;
  141. if(!val)
  142. return 0;
  143. if(val == 1)
  144. return 256;
  145. val += val >> 9;
  146. bits = av_log2(val) + 1;
  147. if(bits < 9)
  148. return (bits << 8) + wp_log2_table[(val << (9 - bits)) & 0xFF];
  149. else
  150. return (bits << 8) + wp_log2_table[(val >> (bits - 9)) & 0xFF];
  151. }
  152. #define LEVEL_DECAY(a) ((a + 0x80) >> 8)
  153. // macros for manipulating median values
  154. #define GET_MED(n) ((c->median[n] >> 4) + 1)
  155. #define DEC_MED(n) c->median[n] -= ((c->median[n] + (128>>n) - 2) / (128>>n)) * 2
  156. #define INC_MED(n) c->median[n] += ((c->median[n] + (128>>n)) / (128>>n)) * 5
  157. // macros for applying weight
  158. #define UPDATE_WEIGHT_CLIP(weight, delta, samples, in) \
  159. if(samples && in){ \
  160. if((samples ^ in) < 0){ \
  161. weight -= delta; \
  162. if(weight < -1024) weight = -1024; \
  163. }else{ \
  164. weight += delta; \
  165. if(weight > 1024) weight = 1024; \
  166. } \
  167. }
  168. static av_always_inline int get_tail(GetBitContext *gb, int k)
  169. {
  170. int p, e, res;
  171. if(k<1)return 0;
  172. p = av_log2(k);
  173. e = (1 << (p + 1)) - k - 1;
  174. res = p ? get_bits(gb, p) : 0;
  175. if(res >= e){
  176. res = (res<<1) - e + get_bits1(gb);
  177. }
  178. return res;
  179. }
  180. static void update_error_limit(WavpackContext *ctx)
  181. {
  182. int i, br[2], sl[2];
  183. for(i = 0; i <= ctx->stereo_in; i++){
  184. ctx->ch[i].bitrate_acc += ctx->ch[i].bitrate_delta;
  185. br[i] = ctx->ch[i].bitrate_acc >> 16;
  186. sl[i] = LEVEL_DECAY(ctx->ch[i].slow_level);
  187. }
  188. if(ctx->stereo_in && ctx->hybrid_bitrate){
  189. int balance = (sl[1] - sl[0] + br[1] + 1) >> 1;
  190. if(balance > br[0]){
  191. br[1] = br[0] << 1;
  192. br[0] = 0;
  193. }else if(-balance > br[0]){
  194. br[0] <<= 1;
  195. br[1] = 0;
  196. }else{
  197. br[1] = br[0] + balance;
  198. br[0] = br[0] - balance;
  199. }
  200. }
  201. for(i = 0; i <= ctx->stereo_in; i++){
  202. if(ctx->hybrid_bitrate){
  203. if(sl[i] - br[i] > -0x100)
  204. ctx->ch[i].error_limit = wp_exp2(sl[i] - br[i] + 0x100);
  205. else
  206. ctx->ch[i].error_limit = 0;
  207. }else{
  208. ctx->ch[i].error_limit = wp_exp2(br[i]);
  209. }
  210. }
  211. }
  212. static int wv_get_value(WavpackContext *ctx, GetBitContext *gb, int channel, int *last)
  213. {
  214. int t, t2;
  215. int sign, base, add, ret;
  216. WvChannel *c = &ctx->ch[channel];
  217. *last = 0;
  218. if((ctx->ch[0].median[0] < 2U) && (ctx->ch[1].median[0] < 2U) && !ctx->zero && !ctx->one){
  219. if(ctx->zeroes){
  220. ctx->zeroes--;
  221. if(ctx->zeroes){
  222. c->slow_level -= LEVEL_DECAY(c->slow_level);
  223. return 0;
  224. }
  225. }else{
  226. t = get_unary_0_33(gb);
  227. if(t >= 2) t = get_bits(gb, t - 1) | (1 << (t-1));
  228. ctx->zeroes = t;
  229. if(ctx->zeroes){
  230. memset(ctx->ch[0].median, 0, sizeof(ctx->ch[0].median));
  231. memset(ctx->ch[1].median, 0, sizeof(ctx->ch[1].median));
  232. c->slow_level -= LEVEL_DECAY(c->slow_level);
  233. return 0;
  234. }
  235. }
  236. }
  237. if(get_bits_count(gb) >= ctx->data_size){
  238. *last = 1;
  239. return 0;
  240. }
  241. if(ctx->zero){
  242. t = 0;
  243. ctx->zero = 0;
  244. }else{
  245. t = get_unary_0_33(gb);
  246. if(get_bits_count(gb) >= ctx->data_size){
  247. *last = 1;
  248. return 0;
  249. }
  250. if(t == 16) {
  251. t2 = get_unary_0_33(gb);
  252. if(t2 < 2) t += t2;
  253. else t += get_bits(gb, t2 - 1) | (1 << (t2 - 1));
  254. }
  255. if(ctx->one){
  256. ctx->one = t&1;
  257. t = (t>>1) + 1;
  258. }else{
  259. ctx->one = t&1;
  260. t >>= 1;
  261. }
  262. ctx->zero = !ctx->one;
  263. }
  264. if(ctx->hybrid && !channel)
  265. update_error_limit(ctx);
  266. if(!t){
  267. base = 0;
  268. add = GET_MED(0) - 1;
  269. DEC_MED(0);
  270. }else if(t == 1){
  271. base = GET_MED(0);
  272. add = GET_MED(1) - 1;
  273. INC_MED(0);
  274. DEC_MED(1);
  275. }else if(t == 2){
  276. base = GET_MED(0) + GET_MED(1);
  277. add = GET_MED(2) - 1;
  278. INC_MED(0);
  279. INC_MED(1);
  280. DEC_MED(2);
  281. }else{
  282. base = GET_MED(0) + GET_MED(1) + GET_MED(2) * (t - 2);
  283. add = GET_MED(2) - 1;
  284. INC_MED(0);
  285. INC_MED(1);
  286. INC_MED(2);
  287. }
  288. if(!c->error_limit){
  289. ret = base + get_tail(gb, add);
  290. }else{
  291. int mid = (base*2 + add + 1) >> 1;
  292. while(add > c->error_limit){
  293. if(get_bits1(gb)){
  294. add -= (mid - base);
  295. base = mid;
  296. }else
  297. add = mid - base - 1;
  298. mid = (base*2 + add + 1) >> 1;
  299. }
  300. ret = mid;
  301. }
  302. sign = get_bits1(gb);
  303. if(ctx->hybrid_bitrate)
  304. c->slow_level += wp_log2(ret) - LEVEL_DECAY(c->slow_level);
  305. return sign ? ~ret : ret;
  306. }
  307. static int wv_unpack_stereo(WavpackContext *s, GetBitContext *gb, int16_t *dst)
  308. {
  309. int i, j, count = 0;
  310. int last, t;
  311. int A, B, L, L2, R, R2, bit;
  312. int pos = 0;
  313. uint32_t crc = 0xFFFFFFFF;
  314. s->one = s->zero = s->zeroes = 0;
  315. do{
  316. L = wv_get_value(s, gb, 0, &last);
  317. if(last) break;
  318. R = wv_get_value(s, gb, 1, &last);
  319. if(last) break;
  320. for(i = 0; i < s->terms; i++){
  321. t = s->decorr[i].value;
  322. j = 0;
  323. if(t > 0){
  324. if(t > 8){
  325. if(t & 1){
  326. A = 2 * s->decorr[i].samplesA[0] - s->decorr[i].samplesA[1];
  327. B = 2 * s->decorr[i].samplesB[0] - s->decorr[i].samplesB[1];
  328. }else{
  329. A = (3 * s->decorr[i].samplesA[0] - s->decorr[i].samplesA[1]) >> 1;
  330. B = (3 * s->decorr[i].samplesB[0] - s->decorr[i].samplesB[1]) >> 1;
  331. }
  332. s->decorr[i].samplesA[1] = s->decorr[i].samplesA[0];
  333. s->decorr[i].samplesB[1] = s->decorr[i].samplesB[0];
  334. j = 0;
  335. }else{
  336. A = s->decorr[i].samplesA[pos];
  337. B = s->decorr[i].samplesB[pos];
  338. j = (pos + t) & 7;
  339. }
  340. L2 = L + ((s->decorr[i].weightA * A + 512) >> 10);
  341. R2 = R + ((s->decorr[i].weightB * B + 512) >> 10);
  342. if(A && L) s->decorr[i].weightA -= ((((L ^ A) >> 30) & 2) - 1) * s->decorr[i].delta;
  343. if(B && R) s->decorr[i].weightB -= ((((R ^ B) >> 30) & 2) - 1) * s->decorr[i].delta;
  344. s->decorr[i].samplesA[j] = L = L2;
  345. s->decorr[i].samplesB[j] = R = R2;
  346. }else if(t == -1){
  347. L2 = L + ((s->decorr[i].weightA * s->decorr[i].samplesA[0] + 512) >> 10);
  348. UPDATE_WEIGHT_CLIP(s->decorr[i].weightA, s->decorr[i].delta, s->decorr[i].samplesA[0], L);
  349. L = L2;
  350. R2 = R + ((s->decorr[i].weightB * L2 + 512) >> 10);
  351. UPDATE_WEIGHT_CLIP(s->decorr[i].weightB, s->decorr[i].delta, L2, R);
  352. R = R2;
  353. s->decorr[i].samplesA[0] = R;
  354. }else{
  355. R2 = R + ((s->decorr[i].weightB * s->decorr[i].samplesB[0] + 512) >> 10);
  356. UPDATE_WEIGHT_CLIP(s->decorr[i].weightB, s->decorr[i].delta, s->decorr[i].samplesB[0], R);
  357. R = R2;
  358. if(t == -3){
  359. R2 = s->decorr[i].samplesA[0];
  360. s->decorr[i].samplesA[0] = R;
  361. }
  362. L2 = L + ((s->decorr[i].weightA * R2 + 512) >> 10);
  363. UPDATE_WEIGHT_CLIP(s->decorr[i].weightA, s->decorr[i].delta, R2, L);
  364. L = L2;
  365. s->decorr[i].samplesB[0] = L;
  366. }
  367. }
  368. pos = (pos + 1) & 7;
  369. if(s->joint)
  370. L += (R -= (L >> 1));
  371. crc = (crc * 3 + L) * 3 + R;
  372. bit = (L & s->and) | s->or;
  373. *dst++ = (((L + bit) << s->shift) - bit) << s->post_shift;
  374. bit = (R & s->and) | s->or;
  375. *dst++ = (((R + bit) << s->shift) - bit) << s->post_shift;
  376. count++;
  377. }while(!last && count < s->samples);
  378. if(crc != s->CRC){
  379. av_log(s->avctx, AV_LOG_ERROR, "CRC error\n");
  380. return -1;
  381. }
  382. return count * 2;
  383. }
  384. static int wv_unpack_mono(WavpackContext *s, GetBitContext *gb, int16_t *dst)
  385. {
  386. int i, j, count = 0;
  387. int last, t;
  388. int A, S, T, bit;
  389. int pos = 0;
  390. uint32_t crc = 0xFFFFFFFF;
  391. s->one = s->zero = s->zeroes = 0;
  392. do{
  393. T = wv_get_value(s, gb, 0, &last);
  394. S = 0;
  395. if(last) break;
  396. for(i = 0; i < s->terms; i++){
  397. t = s->decorr[i].value;
  398. if(t > 8){
  399. if(t & 1)
  400. A = 2 * s->decorr[i].samplesA[0] - s->decorr[i].samplesA[1];
  401. else
  402. A = (3 * s->decorr[i].samplesA[0] - s->decorr[i].samplesA[1]) >> 1;
  403. s->decorr[i].samplesA[1] = s->decorr[i].samplesA[0];
  404. j = 0;
  405. }else{
  406. A = s->decorr[i].samplesA[pos];
  407. j = (pos + t) & 7;
  408. }
  409. S = T + ((s->decorr[i].weightA * A + 512) >> 10);
  410. if(A && T) s->decorr[i].weightA -= ((((T ^ A) >> 30) & 2) - 1) * s->decorr[i].delta;
  411. s->decorr[i].samplesA[j] = T = S;
  412. }
  413. pos = (pos + 1) & 7;
  414. crc = crc * 3 + S;
  415. bit = (S & s->and) | s->or;
  416. *dst++ = (((S + bit) << s->shift) - bit) << s->post_shift;
  417. count++;
  418. }while(!last && count < s->samples);
  419. if(crc != s->CRC){
  420. av_log(s->avctx, AV_LOG_ERROR, "CRC error\n");
  421. return -1;
  422. }
  423. return count;
  424. }
  425. static int wv_unpack_stereo_hires(WavpackContext *s, GetBitContext *gb, int32_t *dst)
  426. {
  427. int i, j, count = 0;
  428. int last, t;
  429. int A, B, L, L2, R, R2, bit;
  430. int pos = 0;
  431. uint32_t crc = 0xFFFFFFFF;
  432. s->one = s->zero = s->zeroes = 0;
  433. do{
  434. L = wv_get_value(s, gb, 0, &last);
  435. if(last) break;
  436. R = wv_get_value(s, gb, 1, &last);
  437. if(last) break;
  438. for(i = 0; i < s->terms; i++){
  439. t = s->decorr[i].value;
  440. j = 0;
  441. if(t > 0){
  442. if(t > 8){
  443. if(t & 1){
  444. A = 2 * s->decorr[i].samplesA[0] - s->decorr[i].samplesA[1];
  445. B = 2 * s->decorr[i].samplesB[0] - s->decorr[i].samplesB[1];
  446. }else{
  447. A = (3 * s->decorr[i].samplesA[0] - s->decorr[i].samplesA[1]) >> 1;
  448. B = (3 * s->decorr[i].samplesB[0] - s->decorr[i].samplesB[1]) >> 1;
  449. }
  450. s->decorr[i].samplesA[1] = s->decorr[i].samplesA[0];
  451. s->decorr[i].samplesB[1] = s->decorr[i].samplesB[0];
  452. j = 0;
  453. }else{
  454. A = s->decorr[i].samplesA[pos];
  455. B = s->decorr[i].samplesB[pos];
  456. j = (pos + t) & 7;
  457. }
  458. L2 = L + ((s->decorr[i].weightA * (int64_t)A + 512) >> 10);
  459. R2 = R + ((s->decorr[i].weightB * (int64_t)B + 512) >> 10);
  460. if(A && L) s->decorr[i].weightA -= ((((L ^ A) >> 30) & 2) - 1) * s->decorr[i].delta;
  461. if(B && R) s->decorr[i].weightB -= ((((R ^ B) >> 30) & 2) - 1) * s->decorr[i].delta;
  462. s->decorr[i].samplesA[j] = L = L2;
  463. s->decorr[i].samplesB[j] = R = R2;
  464. }else if(t == -1){
  465. L2 = L + ((s->decorr[i].weightA * (int64_t)s->decorr[i].samplesA[0] + 512) >> 10);
  466. UPDATE_WEIGHT_CLIP(s->decorr[i].weightA, s->decorr[i].delta, s->decorr[i].samplesA[0], L);
  467. L = L2;
  468. R2 = R + ((s->decorr[i].weightB * (int64_t)L2 + 512) >> 10);
  469. UPDATE_WEIGHT_CLIP(s->decorr[i].weightB, s->decorr[i].delta, L2, R);
  470. R = R2;
  471. s->decorr[i].samplesA[0] = R;
  472. }else{
  473. R2 = R + ((s->decorr[i].weightB * (int64_t)s->decorr[i].samplesB[0] + 512) >> 10);
  474. UPDATE_WEIGHT_CLIP(s->decorr[i].weightB, s->decorr[i].delta, s->decorr[i].samplesB[0], R);
  475. R = R2;
  476. if(t == -3){
  477. R2 = s->decorr[i].samplesA[0];
  478. s->decorr[i].samplesA[0] = R;
  479. }
  480. L2 = L + ((s->decorr[i].weightA * (int64_t)R2 + 512) >> 10);
  481. UPDATE_WEIGHT_CLIP(s->decorr[i].weightA, s->decorr[i].delta, R2, L);
  482. L = L2;
  483. s->decorr[i].samplesB[0] = L;
  484. }
  485. }
  486. pos = (pos + 1) & 7;
  487. if(s->joint)
  488. L += (R -= (L >> 1));
  489. crc = (crc * 3 + L) * 3 + R;
  490. bit = (L & s->and) | s->or;
  491. *dst++ = (((L + bit) << s->shift) - bit) << s->post_shift;
  492. bit = (R & s->and) | s->or;
  493. *dst++ = (((R + bit) << s->shift) - bit) << s->post_shift;
  494. count++;
  495. }while(!last && count < s->samples);
  496. if(crc != s->CRC){
  497. av_log(s->avctx, AV_LOG_ERROR, "CRC error\n");
  498. return -1;
  499. }
  500. return count * 2;
  501. }
  502. static int wv_unpack_mono_hires(WavpackContext *s, GetBitContext *gb, int32_t *dst)
  503. {
  504. int i, j, count = 0;
  505. int last, t;
  506. int A, S, T, bit;
  507. int pos = 0;
  508. uint32_t crc = 0xFFFFFFFF;
  509. s->one = s->zero = s->zeroes = 0;
  510. do{
  511. T = wv_get_value(s, gb, 0, &last);
  512. S = 0;
  513. if(last) break;
  514. for(i = 0; i < s->terms; i++){
  515. t = s->decorr[i].value;
  516. if(t > 8){
  517. if(t & 1)
  518. A = 2 * s->decorr[i].samplesA[0] - s->decorr[i].samplesA[1];
  519. else
  520. A = (3 * s->decorr[i].samplesA[0] - s->decorr[i].samplesA[1]) >> 1;
  521. s->decorr[i].samplesA[1] = s->decorr[i].samplesA[0];
  522. j = 0;
  523. }else{
  524. A = s->decorr[i].samplesA[pos];
  525. j = (pos + t) & 7;
  526. }
  527. S = T + ((s->decorr[i].weightA * (int64_t)A + 512) >> 10);
  528. if(A && T) s->decorr[i].weightA -= ((((T ^ A) >> 30) & 2) - 1) * s->decorr[i].delta;
  529. s->decorr[i].samplesA[j] = T = S;
  530. }
  531. pos = (pos + 1) & 7;
  532. crc = crc * 3 + S;
  533. bit = (S & s->and) | s->or;
  534. *dst++ = (((S + bit) << s->shift) - bit) << s->post_shift;
  535. count++;
  536. }while(!last && count < s->samples);
  537. if(crc != s->CRC){
  538. av_log(s->avctx, AV_LOG_ERROR, "CRC error\n");
  539. return -1;
  540. }
  541. return count;
  542. }
  543. static av_cold int wavpack_decode_init(AVCodecContext *avctx)
  544. {
  545. WavpackContext *s = avctx->priv_data;
  546. s->avctx = avctx;
  547. s->stereo = (avctx->channels == 2);
  548. if(avctx->bits_per_coded_sample <= 16)
  549. avctx->sample_fmt = SAMPLE_FMT_S16;
  550. else
  551. avctx->sample_fmt = SAMPLE_FMT_S32;
  552. avctx->channel_layout = (avctx->channels==2) ? CH_LAYOUT_STEREO : CH_LAYOUT_MONO;
  553. return 0;
  554. }
  555. static int wavpack_decode_frame(AVCodecContext *avctx,
  556. void *data, int *data_size,
  557. AVPacket *avpkt)
  558. {
  559. const uint8_t *buf = avpkt->data;
  560. int buf_size = avpkt->size;
  561. WavpackContext *s = avctx->priv_data;
  562. int16_t *samples = data;
  563. int32_t *samples32 = data;
  564. int samplecount;
  565. int got_terms = 0, got_weights = 0, got_samples = 0, got_entropy = 0, got_bs = 0;
  566. int got_hybrid = 0;
  567. const uint8_t* buf_end = buf + buf_size;
  568. int i, j, id, size, ssize, weights, t;
  569. int bpp = avctx->bits_per_coded_sample <= 16 ? 2 : 4;
  570. if (buf_size == 0){
  571. *data_size = 0;
  572. return 0;
  573. }
  574. memset(s->decorr, 0, MAX_TERMS * sizeof(Decorr));
  575. memset(s->ch, 0, sizeof(s->ch));
  576. s->and = s->or = s->shift = 0;
  577. s->samples = AV_RL32(buf); buf += 4;
  578. if(!s->samples){
  579. *data_size = 0;
  580. return buf_size;
  581. }
  582. /* should not happen but who knows */
  583. if(s->samples * bpp * avctx->channels > *data_size){
  584. av_log(avctx, AV_LOG_ERROR, "Packet size is too big to be handled in lavc!\n");
  585. return -1;
  586. }
  587. s->frame_flags = AV_RL32(buf); buf += 4;
  588. s->stereo_in = (s->frame_flags & WV_FALSE_STEREO) ? 0 : s->stereo;
  589. s->joint = s->frame_flags & WV_JOINT_STEREO;
  590. s->hybrid = s->frame_flags & WV_HYBRID_MODE;
  591. s->hybrid_bitrate = s->frame_flags & WV_HYBRID_BITRATE;
  592. s->post_shift = 8 * (bpp-1-(s->frame_flags&0x03)) + ((s->frame_flags >> 13) & 0x1f);
  593. s->CRC = AV_RL32(buf); buf += 4;
  594. // parse metadata blocks
  595. while(buf < buf_end){
  596. id = *buf++;
  597. size = *buf++;
  598. if(id & WP_IDF_LONG) {
  599. size |= (*buf++) << 8;
  600. size |= (*buf++) << 16;
  601. }
  602. size <<= 1; // size is specified in words
  603. ssize = size;
  604. if(id & WP_IDF_ODD) size--;
  605. if(size < 0){
  606. av_log(avctx, AV_LOG_ERROR, "Got incorrect block %02X with size %i\n", id, size);
  607. break;
  608. }
  609. if(buf + ssize > buf_end){
  610. av_log(avctx, AV_LOG_ERROR, "Block size %i is out of bounds\n", size);
  611. break;
  612. }
  613. if(id & WP_IDF_IGNORE){
  614. buf += ssize;
  615. continue;
  616. }
  617. switch(id & WP_IDF_MASK){
  618. case WP_ID_DECTERMS:
  619. s->terms = size;
  620. if(s->terms > MAX_TERMS){
  621. av_log(avctx, AV_LOG_ERROR, "Too many decorrelation terms\n");
  622. buf += ssize;
  623. continue;
  624. }
  625. for(i = 0; i < s->terms; i++) {
  626. s->decorr[s->terms - i - 1].value = (*buf & 0x1F) - 5;
  627. s->decorr[s->terms - i - 1].delta = *buf >> 5;
  628. buf++;
  629. }
  630. got_terms = 1;
  631. break;
  632. case WP_ID_DECWEIGHTS:
  633. if(!got_terms){
  634. av_log(avctx, AV_LOG_ERROR, "No decorrelation terms met\n");
  635. continue;
  636. }
  637. weights = size >> s->stereo_in;
  638. if(weights > MAX_TERMS || weights > s->terms){
  639. av_log(avctx, AV_LOG_ERROR, "Too many decorrelation weights\n");
  640. buf += ssize;
  641. continue;
  642. }
  643. for(i = 0; i < weights; i++) {
  644. t = (int8_t)(*buf++);
  645. s->decorr[s->terms - i - 1].weightA = t << 3;
  646. if(s->decorr[s->terms - i - 1].weightA > 0)
  647. s->decorr[s->terms - i - 1].weightA += (s->decorr[s->terms - i - 1].weightA + 64) >> 7;
  648. if(s->stereo_in){
  649. t = (int8_t)(*buf++);
  650. s->decorr[s->terms - i - 1].weightB = t << 3;
  651. if(s->decorr[s->terms - i - 1].weightB > 0)
  652. s->decorr[s->terms - i - 1].weightB += (s->decorr[s->terms - i - 1].weightB + 64) >> 7;
  653. }
  654. }
  655. got_weights = 1;
  656. break;
  657. case WP_ID_DECSAMPLES:
  658. if(!got_terms){
  659. av_log(avctx, AV_LOG_ERROR, "No decorrelation terms met\n");
  660. continue;
  661. }
  662. t = 0;
  663. for(i = s->terms - 1; (i >= 0) && (t < size); i--) {
  664. if(s->decorr[i].value > 8){
  665. s->decorr[i].samplesA[0] = wp_exp2(AV_RL16(buf)); buf += 2;
  666. s->decorr[i].samplesA[1] = wp_exp2(AV_RL16(buf)); buf += 2;
  667. if(s->stereo_in){
  668. s->decorr[i].samplesB[0] = wp_exp2(AV_RL16(buf)); buf += 2;
  669. s->decorr[i].samplesB[1] = wp_exp2(AV_RL16(buf)); buf += 2;
  670. t += 4;
  671. }
  672. t += 4;
  673. }else if(s->decorr[i].value < 0){
  674. s->decorr[i].samplesA[0] = wp_exp2(AV_RL16(buf)); buf += 2;
  675. s->decorr[i].samplesB[0] = wp_exp2(AV_RL16(buf)); buf += 2;
  676. t += 4;
  677. }else{
  678. for(j = 0; j < s->decorr[i].value; j++){
  679. s->decorr[i].samplesA[j] = wp_exp2(AV_RL16(buf)); buf += 2;
  680. if(s->stereo_in){
  681. s->decorr[i].samplesB[j] = wp_exp2(AV_RL16(buf)); buf += 2;
  682. }
  683. }
  684. t += s->decorr[i].value * 2 * (s->stereo_in + 1);
  685. }
  686. }
  687. got_samples = 1;
  688. break;
  689. case WP_ID_ENTROPY:
  690. if(size != 6 * (s->stereo_in + 1)){
  691. av_log(avctx, AV_LOG_ERROR, "Entropy vars size should be %i, got %i", 6 * (s->stereo_in + 1), size);
  692. buf += ssize;
  693. continue;
  694. }
  695. for(j = 0; j <= s->stereo_in; j++){
  696. for(i = 0; i < 3; i++){
  697. s->ch[j].median[i] = wp_exp2(AV_RL16(buf));
  698. buf += 2;
  699. }
  700. }
  701. got_entropy = 1;
  702. break;
  703. case WP_ID_HYBRID:
  704. if(s->hybrid_bitrate){
  705. for(i = 0; i <= s->stereo_in; i++){
  706. s->ch[i].slow_level = wp_exp2(AV_RL16(buf));
  707. buf += 2;
  708. size -= 2;
  709. }
  710. }
  711. for(i = 0; i < (s->stereo_in + 1); i++){
  712. s->ch[i].bitrate_acc = AV_RL16(buf) << 16;
  713. buf += 2;
  714. size -= 2;
  715. }
  716. if(size > 0){
  717. for(i = 0; i < (s->stereo_in + 1); i++){
  718. s->ch[i].bitrate_delta = wp_exp2((int16_t)AV_RL16(buf));
  719. buf += 2;
  720. }
  721. }else{
  722. for(i = 0; i < (s->stereo_in + 1); i++)
  723. s->ch[i].bitrate_delta = 0;
  724. }
  725. got_hybrid = 1;
  726. break;
  727. case WP_ID_INT32INFO:
  728. if(size != 4){
  729. av_log(avctx, AV_LOG_ERROR, "Invalid INT32INFO, size = %i, sent_bits = %i\n", size, *buf);
  730. buf += ssize;
  731. continue;
  732. }
  733. if(buf[0])
  734. s->post_shift = buf[0];
  735. else if(buf[1])
  736. s->shift = buf[1];
  737. else if(buf[2]){
  738. s->and = s->or = 1;
  739. s->shift = buf[2];
  740. }else if(buf[3]){
  741. s->and = 1;
  742. s->shift = buf[3];
  743. }
  744. buf += 4;
  745. break;
  746. case WP_ID_DATA:
  747. init_get_bits(&s->gb, buf, size * 8);
  748. s->data_size = size * 8;
  749. buf += size;
  750. got_bs = 1;
  751. break;
  752. default:
  753. buf += size;
  754. }
  755. if(id & WP_IDF_ODD) buf++;
  756. }
  757. if(!got_terms){
  758. av_log(avctx, AV_LOG_ERROR, "No block with decorrelation terms\n");
  759. return -1;
  760. }
  761. if(!got_weights){
  762. av_log(avctx, AV_LOG_ERROR, "No block with decorrelation weights\n");
  763. return -1;
  764. }
  765. if(!got_samples){
  766. av_log(avctx, AV_LOG_ERROR, "No block with decorrelation samples\n");
  767. return -1;
  768. }
  769. if(!got_entropy){
  770. av_log(avctx, AV_LOG_ERROR, "No block with entropy info\n");
  771. return -1;
  772. }
  773. if(s->hybrid && !got_hybrid){
  774. av_log(avctx, AV_LOG_ERROR, "Hybrid config not found\n");
  775. return -1;
  776. }
  777. if(!got_bs){
  778. av_log(avctx, AV_LOG_ERROR, "Packed samples not found\n");
  779. return -1;
  780. }
  781. if(s->stereo_in){
  782. if(bpp == 2)
  783. samplecount = wv_unpack_stereo(s, &s->gb, samples);
  784. else
  785. samplecount = wv_unpack_stereo_hires(s, &s->gb, samples32);
  786. }else{
  787. if(bpp == 2)
  788. samplecount = wv_unpack_mono(s, &s->gb, samples);
  789. else
  790. samplecount = wv_unpack_mono_hires(s, &s->gb, samples32);
  791. if(s->stereo && bpp == 2){
  792. int16_t *dst = samples + samplecount * 2;
  793. int16_t *src = samples + samplecount;
  794. int cnt = samplecount;
  795. while(cnt--){
  796. *--dst = *--src;
  797. *--dst = *src;
  798. }
  799. samplecount *= 2;
  800. }else if(s->stereo){ //32-bit output
  801. int32_t *dst = samples32 + samplecount * 2;
  802. int32_t *src = samples32 + samplecount;
  803. int cnt = samplecount;
  804. while(cnt--){
  805. *--dst = *--src;
  806. *--dst = *src;
  807. }
  808. samplecount *= 2;
  809. }
  810. }
  811. *data_size = samplecount * bpp;
  812. return buf_size;
  813. }
  814. AVCodec wavpack_decoder = {
  815. "wavpack",
  816. CODEC_TYPE_AUDIO,
  817. CODEC_ID_WAVPACK,
  818. sizeof(WavpackContext),
  819. wavpack_decode_init,
  820. NULL,
  821. NULL,
  822. wavpack_decode_frame,
  823. .long_name = NULL_IF_CONFIG_SMALL("WavPack"),
  824. };