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.

846 lines
28KB

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