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.

1527 lines
52KB

  1. /*
  2. * MPEG-4 ALS decoder
  3. * Copyright (c) 2009 Thilo Borgmann <thilo.borgmann _at_ googlemail.com>
  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. /**
  22. * @file libavcodec/alsdec.c
  23. * MPEG-4 ALS decoder
  24. * @author Thilo Borgmann <thilo.borgmann _at_ googlemail.com>
  25. */
  26. //#define DEBUG
  27. #include "avcodec.h"
  28. #include "get_bits.h"
  29. #include "unary.h"
  30. #include "mpeg4audio.h"
  31. #include "bytestream.h"
  32. #include <stdint.h>
  33. /** Rice parameters and corresponding index offsets for decoding the
  34. * indices of scaled PARCOR values. The table choosen is set globally
  35. * by the encoder and stored in ALSSpecificConfig.
  36. */
  37. static const int8_t parcor_rice_table[3][20][2] = {
  38. { {-52, 4}, {-29, 5}, {-31, 4}, { 19, 4}, {-16, 4},
  39. { 12, 3}, { -7, 3}, { 9, 3}, { -5, 3}, { 6, 3},
  40. { -4, 3}, { 3, 3}, { -3, 2}, { 3, 2}, { -2, 2},
  41. { 3, 2}, { -1, 2}, { 2, 2}, { -1, 2}, { 2, 2} },
  42. { {-58, 3}, {-42, 4}, {-46, 4}, { 37, 5}, {-36, 4},
  43. { 29, 4}, {-29, 4}, { 25, 4}, {-23, 4}, { 20, 4},
  44. {-17, 4}, { 16, 4}, {-12, 4}, { 12, 3}, {-10, 4},
  45. { 7, 3}, { -4, 4}, { 3, 3}, { -1, 3}, { 1, 3} },
  46. { {-59, 3}, {-45, 5}, {-50, 4}, { 38, 4}, {-39, 4},
  47. { 32, 4}, {-30, 4}, { 25, 3}, {-23, 3}, { 20, 3},
  48. {-20, 3}, { 16, 3}, {-13, 3}, { 10, 3}, { -7, 3},
  49. { 3, 3}, { 0, 3}, { -1, 3}, { 2, 3}, { -1, 2} }
  50. };
  51. /** Scaled PARCOR values used for the first two PARCOR coefficients.
  52. * To be indexed by the Rice coded indices.
  53. * Generated by: parcor_scaled_values[i] = 32 + ((i * (i+1)) << 7) - (1 << 20)
  54. * Actual values are divided by 32 in order to be stored in 16 bits.
  55. */
  56. static const int16_t parcor_scaled_values[] = {
  57. -1048544 / 32, -1048288 / 32, -1047776 / 32, -1047008 / 32,
  58. -1045984 / 32, -1044704 / 32, -1043168 / 32, -1041376 / 32,
  59. -1039328 / 32, -1037024 / 32, -1034464 / 32, -1031648 / 32,
  60. -1028576 / 32, -1025248 / 32, -1021664 / 32, -1017824 / 32,
  61. -1013728 / 32, -1009376 / 32, -1004768 / 32, -999904 / 32,
  62. -994784 / 32, -989408 / 32, -983776 / 32, -977888 / 32,
  63. -971744 / 32, -965344 / 32, -958688 / 32, -951776 / 32,
  64. -944608 / 32, -937184 / 32, -929504 / 32, -921568 / 32,
  65. -913376 / 32, -904928 / 32, -896224 / 32, -887264 / 32,
  66. -878048 / 32, -868576 / 32, -858848 / 32, -848864 / 32,
  67. -838624 / 32, -828128 / 32, -817376 / 32, -806368 / 32,
  68. -795104 / 32, -783584 / 32, -771808 / 32, -759776 / 32,
  69. -747488 / 32, -734944 / 32, -722144 / 32, -709088 / 32,
  70. -695776 / 32, -682208 / 32, -668384 / 32, -654304 / 32,
  71. -639968 / 32, -625376 / 32, -610528 / 32, -595424 / 32,
  72. -580064 / 32, -564448 / 32, -548576 / 32, -532448 / 32,
  73. -516064 / 32, -499424 / 32, -482528 / 32, -465376 / 32,
  74. -447968 / 32, -430304 / 32, -412384 / 32, -394208 / 32,
  75. -375776 / 32, -357088 / 32, -338144 / 32, -318944 / 32,
  76. -299488 / 32, -279776 / 32, -259808 / 32, -239584 / 32,
  77. -219104 / 32, -198368 / 32, -177376 / 32, -156128 / 32,
  78. -134624 / 32, -112864 / 32, -90848 / 32, -68576 / 32,
  79. -46048 / 32, -23264 / 32, -224 / 32, 23072 / 32,
  80. 46624 / 32, 70432 / 32, 94496 / 32, 118816 / 32,
  81. 143392 / 32, 168224 / 32, 193312 / 32, 218656 / 32,
  82. 244256 / 32, 270112 / 32, 296224 / 32, 322592 / 32,
  83. 349216 / 32, 376096 / 32, 403232 / 32, 430624 / 32,
  84. 458272 / 32, 486176 / 32, 514336 / 32, 542752 / 32,
  85. 571424 / 32, 600352 / 32, 629536 / 32, 658976 / 32,
  86. 688672 / 32, 718624 / 32, 748832 / 32, 779296 / 32,
  87. 810016 / 32, 840992 / 32, 872224 / 32, 903712 / 32,
  88. 935456 / 32, 967456 / 32, 999712 / 32, 1032224 / 32
  89. };
  90. /** Gain values of p(0) for long-term prediction.
  91. * To be indexed by the Rice coded indices.
  92. */
  93. static const uint8_t ltp_gain_values [4][4] = {
  94. { 0, 8, 16, 24},
  95. {32, 40, 48, 56},
  96. {64, 70, 76, 82},
  97. {88, 92, 96, 100}
  98. };
  99. /** Inter-channel weighting factors for multi-channel correlation.
  100. * To be indexed by the Rice coded indices.
  101. */
  102. static const int16_t mcc_weightings[] = {
  103. 204, 192, 179, 166, 153, 140, 128, 115,
  104. 102, 89, 76, 64, 51, 38, 25, 12,
  105. 0, -12, -25, -38, -51, -64, -76, -89,
  106. -102, -115, -128, -140, -153, -166, -179, -192
  107. };
  108. enum RA_Flag {
  109. RA_FLAG_NONE,
  110. RA_FLAG_FRAMES,
  111. RA_FLAG_HEADER
  112. };
  113. typedef struct {
  114. uint32_t samples; ///< number of samples, 0xFFFFFFFF if unknown
  115. int resolution; ///< 000 = 8-bit; 001 = 16-bit; 010 = 24-bit; 011 = 32-bit
  116. int floating; ///< 1 = IEEE 32-bit floating-point, 0 = integer
  117. int frame_length; ///< frame length for each frame (last frame may differ)
  118. int ra_distance; ///< distance between RA frames (in frames, 0...255)
  119. enum RA_Flag ra_flag; ///< indicates where the size of ra units is stored
  120. int adapt_order; ///< adaptive order: 1 = on, 0 = off
  121. int coef_table; ///< table index of Rice code parameters
  122. int long_term_prediction; ///< long term prediction (LTP): 1 = on, 0 = off
  123. int max_order; ///< maximum prediction order (0..1023)
  124. int block_switching; ///< number of block switching levels
  125. int bgmc; ///< "Block Gilbert-Moore Code": 1 = on, 0 = off (Rice coding only)
  126. int sb_part; ///< sub-block partition
  127. int joint_stereo; ///< joint stereo: 1 = on, 0 = off
  128. int mc_coding; ///< extended inter-channel coding (multi channel coding): 1 = on, 0 = off
  129. int chan_config; ///< indicates that a chan_config_info field is present
  130. int chan_sort; ///< channel rearrangement: 1 = on, 0 = off
  131. int rlslms; ///< use "Recursive Least Square-Least Mean Square" predictor: 1 = on, 0 = off
  132. int chan_config_info; ///< mapping of channels to loudspeaker locations. Unused until setting channel configuration is implemented.
  133. int *chan_pos; ///< original channel positions
  134. uint32_t header_size; ///< header size of original audio file in bytes, provided for debugging
  135. uint32_t trailer_size; ///< trailer size of original audio file in bytes, provided for debugging
  136. } ALSSpecificConfig;
  137. typedef struct {
  138. int stop_flag;
  139. int master_channel;
  140. int time_diff_flag;
  141. int time_diff_sign;
  142. int time_diff_index;
  143. int weighting[6];
  144. } ALSChannelData;
  145. typedef struct {
  146. AVCodecContext *avctx;
  147. ALSSpecificConfig sconf;
  148. GetBitContext gb;
  149. unsigned int cur_frame_length; ///< length of the current frame to decode
  150. unsigned int frame_id; ///< the frame ID / number of the current frame
  151. unsigned int js_switch; ///< if true, joint-stereo decoding is enforced
  152. unsigned int num_blocks; ///< number of blocks used in the current frame
  153. int ltp_lag_length; ///< number of bits used for ltp lag value
  154. int *use_ltp; ///< contains use_ltp flags for all channels
  155. int *ltp_lag; ///< contains ltp lag values for all channels
  156. int **ltp_gain; ///< gain values for ltp 5-tap filter for a channel
  157. int *ltp_gain_buffer; ///< contains all gain values for ltp 5-tap filter
  158. int32_t **quant_cof; ///< quantized parcor coefficients for a channel
  159. int32_t *quant_cof_buffer; ///< contains all quantized parcor coefficients
  160. int32_t **lpc_cof; ///< coefficients of the direct form prediction filter for a channel
  161. int32_t *lpc_cof_buffer; ///< contains all coefficients of the direct form prediction filter
  162. int32_t *lpc_cof_reversed_buffer; ///< temporary buffer to set up a reversed versio of lpc_cof_buffer
  163. ALSChannelData **chan_data; ///< channel data for multi-channel correlation
  164. ALSChannelData *chan_data_buffer; ///< contains channel data for all channels
  165. int *reverted_channels; ///< stores a flag for each reverted channel
  166. int32_t *prev_raw_samples; ///< contains unshifted raw samples from the previous block
  167. int32_t **raw_samples; ///< decoded raw samples for each channel
  168. int32_t *raw_buffer; ///< contains all decoded raw samples including carryover samples
  169. } ALSDecContext;
  170. typedef struct {
  171. unsigned int block_length; ///< number of samples within the block
  172. unsigned int ra_block; ///< if true, this is a random access block
  173. int const_block; ///< if true, this is a constant value block
  174. int32_t const_val; ///< the sample value of a constant block
  175. int js_blocks; ///< true if this block contains a difference signal
  176. unsigned int shift_lsbs; ///< shift of values for this block
  177. unsigned int opt_order; ///< prediction order of this block
  178. int store_prev_samples;///< if true, carryover samples have to be stored
  179. int *use_ltp; ///< if true, long-term prediction is used
  180. int *ltp_lag; ///< lag value for long-term prediction
  181. int *ltp_gain; ///< gain values for ltp 5-tap filter
  182. int32_t *quant_cof; ///< quantized parcor coefficients
  183. int32_t *lpc_cof; ///< coefficients of the direct form prediction
  184. int32_t *raw_samples; ///< decoded raw samples / residuals for this block
  185. int32_t *prev_raw_samples; ///< contains unshifted raw samples from the previous block
  186. int32_t *raw_other; ///< decoded raw samples of the other channel of a channel pair
  187. } ALSBlockData;
  188. static av_cold void dprint_specific_config(ALSDecContext *ctx)
  189. {
  190. #ifdef DEBUG
  191. AVCodecContext *avctx = ctx->avctx;
  192. ALSSpecificConfig *sconf = &ctx->sconf;
  193. dprintf(avctx, "resolution = %i\n", sconf->resolution);
  194. dprintf(avctx, "floating = %i\n", sconf->floating);
  195. dprintf(avctx, "frame_length = %i\n", sconf->frame_length);
  196. dprintf(avctx, "ra_distance = %i\n", sconf->ra_distance);
  197. dprintf(avctx, "ra_flag = %i\n", sconf->ra_flag);
  198. dprintf(avctx, "adapt_order = %i\n", sconf->adapt_order);
  199. dprintf(avctx, "coef_table = %i\n", sconf->coef_table);
  200. dprintf(avctx, "long_term_prediction = %i\n", sconf->long_term_prediction);
  201. dprintf(avctx, "max_order = %i\n", sconf->max_order);
  202. dprintf(avctx, "block_switching = %i\n", sconf->block_switching);
  203. dprintf(avctx, "bgmc = %i\n", sconf->bgmc);
  204. dprintf(avctx, "sb_part = %i\n", sconf->sb_part);
  205. dprintf(avctx, "joint_stereo = %i\n", sconf->joint_stereo);
  206. dprintf(avctx, "mc_coding = %i\n", sconf->mc_coding);
  207. dprintf(avctx, "chan_config = %i\n", sconf->chan_config);
  208. dprintf(avctx, "chan_sort = %i\n", sconf->chan_sort);
  209. dprintf(avctx, "RLSLMS = %i\n", sconf->rlslms);
  210. dprintf(avctx, "chan_config_info = %i\n", sconf->chan_config_info);
  211. dprintf(avctx, "header_size = %i\n", sconf->header_size);
  212. dprintf(avctx, "trailer_size = %i\n", sconf->trailer_size);
  213. #endif
  214. }
  215. /** Reads an ALSSpecificConfig from a buffer into the output struct.
  216. */
  217. static av_cold int read_specific_config(ALSDecContext *ctx)
  218. {
  219. GetBitContext gb;
  220. uint64_t ht_size;
  221. int i, config_offset, crc_enabled;
  222. MPEG4AudioConfig m4ac;
  223. ALSSpecificConfig *sconf = &ctx->sconf;
  224. AVCodecContext *avctx = ctx->avctx;
  225. uint32_t als_id;
  226. init_get_bits(&gb, avctx->extradata, avctx->extradata_size * 8);
  227. config_offset = ff_mpeg4audio_get_config(&m4ac, avctx->extradata,
  228. avctx->extradata_size);
  229. if (config_offset < 0)
  230. return -1;
  231. skip_bits_long(&gb, config_offset);
  232. if (get_bits_left(&gb) < (30 << 3))
  233. return -1;
  234. // read the fixed items
  235. als_id = get_bits_long(&gb, 32);
  236. avctx->sample_rate = m4ac.sample_rate;
  237. skip_bits_long(&gb, 32); // sample rate already known
  238. sconf->samples = get_bits_long(&gb, 32);
  239. avctx->channels = m4ac.channels;
  240. skip_bits(&gb, 16); // number of channels already knwon
  241. skip_bits(&gb, 3); // skip file_type
  242. sconf->resolution = get_bits(&gb, 3);
  243. sconf->floating = get_bits1(&gb);
  244. skip_bits1(&gb); // skip msb_first
  245. sconf->frame_length = get_bits(&gb, 16) + 1;
  246. sconf->ra_distance = get_bits(&gb, 8);
  247. sconf->ra_flag = get_bits(&gb, 2);
  248. sconf->adapt_order = get_bits1(&gb);
  249. sconf->coef_table = get_bits(&gb, 2);
  250. sconf->long_term_prediction = get_bits1(&gb);
  251. sconf->max_order = get_bits(&gb, 10);
  252. sconf->block_switching = get_bits(&gb, 2);
  253. sconf->bgmc = get_bits1(&gb);
  254. sconf->sb_part = get_bits1(&gb);
  255. sconf->joint_stereo = get_bits1(&gb);
  256. sconf->mc_coding = get_bits1(&gb);
  257. sconf->chan_config = get_bits1(&gb);
  258. sconf->chan_sort = get_bits1(&gb);
  259. crc_enabled = get_bits1(&gb);
  260. sconf->rlslms = get_bits1(&gb);
  261. skip_bits(&gb, 5); // skip 5 reserved bits
  262. skip_bits1(&gb); // skip aux_data_enabled
  263. // check for ALSSpecificConfig struct
  264. if (als_id != MKBETAG('A','L','S','\0'))
  265. return -1;
  266. ctx->cur_frame_length = sconf->frame_length;
  267. // read channel config
  268. if (sconf->chan_config)
  269. sconf->chan_config_info = get_bits(&gb, 16);
  270. // TODO: use this to set avctx->channel_layout
  271. // read channel sorting
  272. if (sconf->chan_sort && avctx->channels > 1) {
  273. int chan_pos_bits = av_ceil_log2(avctx->channels);
  274. int bits_needed = avctx->channels * chan_pos_bits + 7;
  275. if (get_bits_left(&gb) < bits_needed)
  276. return -1;
  277. if (!(sconf->chan_pos = av_malloc(avctx->channels * sizeof(*sconf->chan_pos))))
  278. return AVERROR(ENOMEM);
  279. for (i = 0; i < avctx->channels; i++)
  280. sconf->chan_pos[i] = get_bits(&gb, chan_pos_bits);
  281. align_get_bits(&gb);
  282. // TODO: use this to actually do channel sorting
  283. } else {
  284. sconf->chan_sort = 0;
  285. }
  286. // read fixed header and trailer sizes,
  287. // if size = 0xFFFFFFFF then there is no data field!
  288. if (get_bits_left(&gb) < 64)
  289. return -1;
  290. sconf->header_size = get_bits_long(&gb, 32);
  291. sconf->trailer_size = get_bits_long(&gb, 32);
  292. if (sconf->header_size == 0xFFFFFFFF)
  293. sconf->header_size = 0;
  294. if (sconf->trailer_size == 0xFFFFFFFF)
  295. sconf->trailer_size = 0;
  296. ht_size = ((int64_t)(sconf->header_size) + (int64_t)(sconf->trailer_size)) << 3;
  297. // skip the header and trailer data
  298. if (get_bits_left(&gb) < ht_size)
  299. return -1;
  300. if (ht_size > INT32_MAX)
  301. return -1;
  302. skip_bits_long(&gb, ht_size);
  303. // skip the crc data
  304. if (crc_enabled) {
  305. if (get_bits_left(&gb) < 32)
  306. return -1;
  307. skip_bits_long(&gb, 32);
  308. }
  309. // no need to read the rest of ALSSpecificConfig (ra_unit_size & aux data)
  310. dprint_specific_config(ctx);
  311. return 0;
  312. }
  313. /** Checks the ALSSpecificConfig for unsupported features.
  314. */
  315. static int check_specific_config(ALSDecContext *ctx)
  316. {
  317. ALSSpecificConfig *sconf = &ctx->sconf;
  318. int error = 0;
  319. // report unsupported feature and set error value
  320. #define MISSING_ERR(cond, str, errval) \
  321. { \
  322. if (cond) { \
  323. av_log_missing_feature(ctx->avctx, str, 0); \
  324. error = errval; \
  325. } \
  326. }
  327. MISSING_ERR(sconf->floating, "Floating point decoding", -1);
  328. MISSING_ERR(sconf->bgmc, "BGMC entropy decoding", -1);
  329. MISSING_ERR(sconf->rlslms, "Adaptive RLS-LMS prediction", -1);
  330. MISSING_ERR(sconf->chan_sort, "Channel sorting", 0);
  331. return error;
  332. }
  333. /** Parses the bs_info field to extract the block partitioning used in
  334. * block switching mode, refer to ISO/IEC 14496-3, section 11.6.2.
  335. */
  336. static void parse_bs_info(const uint32_t bs_info, unsigned int n,
  337. unsigned int div, unsigned int **div_blocks,
  338. unsigned int *num_blocks)
  339. {
  340. if (n < 31 && ((bs_info << n) & 0x40000000)) {
  341. // if the level is valid and the investigated bit n is set
  342. // then recursively check both children at bits (2n+1) and (2n+2)
  343. n *= 2;
  344. div += 1;
  345. parse_bs_info(bs_info, n + 1, div, div_blocks, num_blocks);
  346. parse_bs_info(bs_info, n + 2, div, div_blocks, num_blocks);
  347. } else {
  348. // else the bit is not set or the last level has been reached
  349. // (bit implicitly not set)
  350. **div_blocks = div;
  351. (*div_blocks)++;
  352. (*num_blocks)++;
  353. }
  354. }
  355. /** Reads and decodes a Rice codeword.
  356. */
  357. static int32_t decode_rice(GetBitContext *gb, unsigned int k)
  358. {
  359. int max = get_bits_left(gb) - k;
  360. int q = get_unary(gb, 0, max);
  361. int r = k ? get_bits1(gb) : !(q & 1);
  362. if (k > 1) {
  363. q <<= (k - 1);
  364. q += get_bits_long(gb, k - 1);
  365. } else if (!k) {
  366. q >>= 1;
  367. }
  368. return r ? q : ~q;
  369. }
  370. /** Converts PARCOR coefficient k to direct filter coefficient.
  371. */
  372. static void parcor_to_lpc(unsigned int k, const int32_t *par, int32_t *cof)
  373. {
  374. int i, j;
  375. for (i = 0, j = k - 1; i < j; i++, j--) {
  376. int tmp1 = ((MUL64(par[k], cof[j]) + (1 << 19)) >> 20);
  377. cof[j] += ((MUL64(par[k], cof[i]) + (1 << 19)) >> 20);
  378. cof[i] += tmp1;
  379. }
  380. if (i == j)
  381. cof[i] += ((MUL64(par[k], cof[j]) + (1 << 19)) >> 20);
  382. cof[k] = par[k];
  383. }
  384. /** Reads block switching field if necessary and sets actual block sizes.
  385. * Also assures that the block sizes of the last frame correspond to the
  386. * actual number of samples.
  387. */
  388. static void get_block_sizes(ALSDecContext *ctx, unsigned int *div_blocks,
  389. uint32_t *bs_info)
  390. {
  391. ALSSpecificConfig *sconf = &ctx->sconf;
  392. GetBitContext *gb = &ctx->gb;
  393. unsigned int *ptr_div_blocks = div_blocks;
  394. unsigned int b;
  395. if (sconf->block_switching) {
  396. unsigned int bs_info_len = 1 << (sconf->block_switching + 2);
  397. *bs_info = get_bits_long(gb, bs_info_len);
  398. *bs_info <<= (32 - bs_info_len);
  399. }
  400. ctx->num_blocks = 0;
  401. parse_bs_info(*bs_info, 0, 0, &ptr_div_blocks, &ctx->num_blocks);
  402. // The last frame may have an overdetermined block structure given in
  403. // the bitstream. In that case the defined block structure would need
  404. // more samples than available to be consistent.
  405. // The block structure is actually used but the block sizes are adapted
  406. // to fit the actual number of available samples.
  407. // Example: 5 samples, 2nd level block sizes: 2 2 2 2.
  408. // This results in the actual block sizes: 2 2 1 0.
  409. // This is not specified in 14496-3 but actually done by the reference
  410. // codec RM22 revision 2.
  411. // This appears to happen in case of an odd number of samples in the last
  412. // frame which is actually not allowed by the block length switching part
  413. // of 14496-3.
  414. // The ALS conformance files feature an odd number of samples in the last
  415. // frame.
  416. for (b = 0; b < ctx->num_blocks; b++)
  417. div_blocks[b] = ctx->sconf.frame_length >> div_blocks[b];
  418. if (ctx->cur_frame_length != ctx->sconf.frame_length) {
  419. unsigned int remaining = ctx->cur_frame_length;
  420. for (b = 0; b < ctx->num_blocks; b++) {
  421. if (remaining < div_blocks[b]) {
  422. div_blocks[b] = remaining;
  423. ctx->num_blocks = b + 1;
  424. break;
  425. }
  426. remaining -= div_blocks[b];
  427. }
  428. }
  429. }
  430. /** Reads the block data for a constant block
  431. */
  432. static void read_const_block_data(ALSDecContext *ctx, ALSBlockData *bd)
  433. {
  434. ALSSpecificConfig *sconf = &ctx->sconf;
  435. AVCodecContext *avctx = ctx->avctx;
  436. GetBitContext *gb = &ctx->gb;
  437. bd->const_val = 0;
  438. bd->const_block = get_bits1(gb); // 1 = constant value, 0 = zero block (silence)
  439. bd->js_blocks = get_bits1(gb);
  440. // skip 5 reserved bits
  441. skip_bits(gb, 5);
  442. if (bd->const_block) {
  443. unsigned int const_val_bits = sconf->floating ? 24 : avctx->bits_per_raw_sample;
  444. bd->const_val = get_sbits_long(gb, const_val_bits);
  445. }
  446. // ensure constant block decoding by reusing this field
  447. bd->const_block = 1;
  448. }
  449. /** Decodes the block data for a constant block
  450. */
  451. static void decode_const_block_data(ALSDecContext *ctx, ALSBlockData *bd)
  452. {
  453. int smp = bd->block_length;
  454. int32_t val = bd->const_val;
  455. int32_t *dst = bd->raw_samples;
  456. // write raw samples into buffer
  457. for (; smp; smp--)
  458. *dst++ = val;
  459. }
  460. /** Reads the block data for a non-constant block
  461. */
  462. static int read_var_block_data(ALSDecContext *ctx, ALSBlockData *bd)
  463. {
  464. ALSSpecificConfig *sconf = &ctx->sconf;
  465. AVCodecContext *avctx = ctx->avctx;
  466. GetBitContext *gb = &ctx->gb;
  467. unsigned int k;
  468. unsigned int s[8];
  469. unsigned int sub_blocks, log2_sub_blocks, sb_length;
  470. unsigned int start = 0;
  471. unsigned int opt_order;
  472. int sb;
  473. int32_t *quant_cof = bd->quant_cof;
  474. // ensure variable block decoding by reusing this field
  475. bd->const_block = 0;
  476. bd->opt_order = 1;
  477. bd->js_blocks = get_bits1(gb);
  478. opt_order = bd->opt_order;
  479. // determine the number of subblocks for entropy decoding
  480. if (!sconf->bgmc && !sconf->sb_part) {
  481. log2_sub_blocks = 0;
  482. } else {
  483. if (sconf->bgmc && sconf->sb_part)
  484. log2_sub_blocks = get_bits(gb, 2);
  485. else
  486. log2_sub_blocks = 2 * get_bits1(gb);
  487. }
  488. sub_blocks = 1 << log2_sub_blocks;
  489. // do not continue in case of a damaged stream since
  490. // block_length must be evenly divisible by sub_blocks
  491. if (bd->block_length & (sub_blocks - 1)) {
  492. av_log(avctx, AV_LOG_WARNING,
  493. "Block length is not evenly divisible by the number of subblocks.\n");
  494. return -1;
  495. }
  496. sb_length = bd->block_length >> log2_sub_blocks;
  497. if (sconf->bgmc) {
  498. // TODO: BGMC mode
  499. } else {
  500. s[0] = get_bits(gb, 4 + (sconf->resolution > 1));
  501. for (k = 1; k < sub_blocks; k++)
  502. s[k] = s[k - 1] + decode_rice(gb, 0);
  503. }
  504. if (get_bits1(gb))
  505. bd->shift_lsbs = get_bits(gb, 4) + 1;
  506. bd->store_prev_samples = (bd->js_blocks && bd->raw_other) || bd->shift_lsbs;
  507. if (!sconf->rlslms) {
  508. if (sconf->adapt_order) {
  509. int opt_order_length = av_ceil_log2(av_clip((bd->block_length >> 3) - 1,
  510. 2, sconf->max_order + 1));
  511. bd->opt_order = get_bits(gb, opt_order_length);
  512. } else {
  513. bd->opt_order = sconf->max_order;
  514. }
  515. opt_order = bd->opt_order;
  516. if (opt_order) {
  517. int add_base;
  518. if (sconf->coef_table == 3) {
  519. add_base = 0x7F;
  520. // read coefficient 0
  521. quant_cof[0] = 32 * parcor_scaled_values[get_bits(gb, 7)];
  522. // read coefficient 1
  523. if (opt_order > 1)
  524. quant_cof[1] = -32 * parcor_scaled_values[get_bits(gb, 7)];
  525. // read coefficients 2 to opt_order
  526. for (k = 2; k < opt_order; k++)
  527. quant_cof[k] = get_bits(gb, 7);
  528. } else {
  529. int k_max;
  530. add_base = 1;
  531. // read coefficient 0 to 19
  532. k_max = FFMIN(opt_order, 20);
  533. for (k = 0; k < k_max; k++) {
  534. int rice_param = parcor_rice_table[sconf->coef_table][k][1];
  535. int offset = parcor_rice_table[sconf->coef_table][k][0];
  536. quant_cof[k] = decode_rice(gb, rice_param) + offset;
  537. }
  538. // read coefficients 20 to 126
  539. k_max = FFMIN(opt_order, 127);
  540. for (; k < k_max; k++)
  541. quant_cof[k] = decode_rice(gb, 2) + (k & 1);
  542. // read coefficients 127 to opt_order
  543. for (; k < opt_order; k++)
  544. quant_cof[k] = decode_rice(gb, 1);
  545. quant_cof[0] = 32 * parcor_scaled_values[quant_cof[0] + 64];
  546. if (opt_order > 1)
  547. quant_cof[1] = -32 * parcor_scaled_values[quant_cof[1] + 64];
  548. }
  549. for (k = 2; k < opt_order; k++)
  550. quant_cof[k] = (quant_cof[k] << 14) + (add_base << 13);
  551. }
  552. }
  553. // read LTP gain and lag values
  554. if (sconf->long_term_prediction) {
  555. *bd->use_ltp = get_bits1(gb);
  556. if (*bd->use_ltp) {
  557. bd->ltp_gain[0] = decode_rice(gb, 1) << 3;
  558. bd->ltp_gain[1] = decode_rice(gb, 2) << 3;
  559. bd->ltp_gain[2] = ltp_gain_values[get_unary(gb, 0, 4)][get_bits(gb, 2)];
  560. bd->ltp_gain[3] = decode_rice(gb, 2) << 3;
  561. bd->ltp_gain[4] = decode_rice(gb, 1) << 3;
  562. *bd->ltp_lag = get_bits(gb, ctx->ltp_lag_length);
  563. *bd->ltp_lag += FFMAX(4, opt_order + 1);
  564. }
  565. }
  566. // read first value and residuals in case of a random access block
  567. if (bd->ra_block) {
  568. if (opt_order)
  569. bd->raw_samples[0] = decode_rice(gb, avctx->bits_per_raw_sample - 4);
  570. if (opt_order > 1)
  571. bd->raw_samples[1] = decode_rice(gb, s[0] + 3);
  572. if (opt_order > 2)
  573. bd->raw_samples[2] = decode_rice(gb, s[0] + 1);
  574. start = FFMIN(opt_order, 3);
  575. }
  576. // read all residuals
  577. if (sconf->bgmc) {
  578. // TODO: BGMC mode
  579. } else {
  580. int32_t *current_res = bd->raw_samples + start;
  581. for (sb = 0; sb < sub_blocks; sb++, start = 0)
  582. for (; start < sb_length; start++)
  583. *current_res++ = decode_rice(gb, s[sb]);
  584. }
  585. if (!sconf->mc_coding || ctx->js_switch)
  586. align_get_bits(gb);
  587. return 0;
  588. }
  589. /** Decodes the block data for a non-constant block
  590. */
  591. static int decode_var_block_data(ALSDecContext *ctx, ALSBlockData *bd)
  592. {
  593. ALSSpecificConfig *sconf = &ctx->sconf;
  594. unsigned int block_length = bd->block_length;
  595. unsigned int smp = 0;
  596. unsigned int k;
  597. int opt_order = bd->opt_order;
  598. int sb;
  599. int64_t y;
  600. int32_t *quant_cof = bd->quant_cof;
  601. int32_t *lpc_cof = bd->lpc_cof;
  602. int32_t *raw_samples = bd->raw_samples;
  603. int32_t *raw_samples_end = bd->raw_samples + bd->block_length;
  604. int32_t *lpc_cof_reversed = ctx->lpc_cof_reversed_buffer;
  605. // reverse long-term prediction
  606. if (*bd->use_ltp) {
  607. int ltp_smp;
  608. for (ltp_smp = FFMAX(*bd->ltp_lag - 2, 0); ltp_smp < block_length; ltp_smp++) {
  609. int center = ltp_smp - *bd->ltp_lag;
  610. int begin = FFMAX(0, center - 2);
  611. int end = center + 3;
  612. int tab = 5 - (end - begin);
  613. int base;
  614. y = 1 << 6;
  615. for (base = begin; base < end; base++, tab++)
  616. y += MUL64(bd->ltp_gain[tab], raw_samples[base]);
  617. raw_samples[ltp_smp] += y >> 7;
  618. }
  619. }
  620. // reconstruct all samples from residuals
  621. if (bd->ra_block) {
  622. for (smp = 0; smp < opt_order; smp++) {
  623. y = 1 << 19;
  624. for (sb = 0; sb < smp; sb++)
  625. y += MUL64(lpc_cof[sb], raw_samples[-(sb + 1)]);
  626. *raw_samples++ -= y >> 20;
  627. parcor_to_lpc(smp, quant_cof, lpc_cof);
  628. }
  629. } else {
  630. for (k = 0; k < opt_order; k++)
  631. parcor_to_lpc(k, quant_cof, lpc_cof);
  632. // store previous samples in case that they have to be altered
  633. if (bd->store_prev_samples)
  634. memcpy(bd->prev_raw_samples, raw_samples - sconf->max_order,
  635. sizeof(*bd->prev_raw_samples) * sconf->max_order);
  636. // reconstruct difference signal for prediction (joint-stereo)
  637. if (bd->js_blocks && bd->raw_other) {
  638. int32_t *left, *right;
  639. if (bd->raw_other > raw_samples) { // D = R - L
  640. left = raw_samples;
  641. right = bd->raw_other;
  642. } else { // D = R - L
  643. left = bd->raw_other;
  644. right = raw_samples;
  645. }
  646. for (sb = -1; sb >= -sconf->max_order; sb--)
  647. raw_samples[sb] = right[sb] - left[sb];
  648. }
  649. // reconstruct shifted signal
  650. if (bd->shift_lsbs)
  651. for (sb = -1; sb >= -sconf->max_order; sb--)
  652. raw_samples[sb] >>= bd->shift_lsbs;
  653. }
  654. // reverse linear prediction coefficients for efficiency
  655. lpc_cof = lpc_cof + opt_order;
  656. for (sb = 0; sb < opt_order; sb++)
  657. lpc_cof_reversed[sb] = lpc_cof[-(sb + 1)];
  658. // reconstruct raw samples
  659. raw_samples = bd->raw_samples + smp;
  660. lpc_cof = lpc_cof_reversed + opt_order;
  661. for (; raw_samples < raw_samples_end; raw_samples++) {
  662. y = 1 << 19;
  663. for (sb = -opt_order; sb < 0; sb++)
  664. y += MUL64(lpc_cof[sb], raw_samples[sb]);
  665. *raw_samples -= y >> 20;
  666. }
  667. raw_samples = bd->raw_samples;
  668. // restore previous samples in case that they have been altered
  669. if (bd->store_prev_samples)
  670. memcpy(raw_samples - sconf->max_order, bd->prev_raw_samples,
  671. sizeof(*raw_samples) * sconf->max_order);
  672. return 0;
  673. }
  674. /** Reads the block data.
  675. */
  676. static int read_block(ALSDecContext *ctx, ALSBlockData *bd)
  677. {
  678. GetBitContext *gb = &ctx->gb;
  679. // read block type flag and read the samples accordingly
  680. if (get_bits1(gb)) {
  681. if (read_var_block_data(ctx, bd))
  682. return -1;
  683. } else {
  684. read_const_block_data(ctx, bd);
  685. }
  686. return 0;
  687. }
  688. /** Decodes the block data.
  689. */
  690. static int decode_block(ALSDecContext *ctx, ALSBlockData *bd)
  691. {
  692. unsigned int smp;
  693. // read block type flag and read the samples accordingly
  694. if (bd->const_block)
  695. decode_const_block_data(ctx, bd);
  696. else if (decode_var_block_data(ctx, bd))
  697. return -1;
  698. // TODO: read RLSLMS extension data
  699. if (bd->shift_lsbs)
  700. for (smp = 0; smp < bd->block_length; smp++)
  701. bd->raw_samples[smp] <<= bd->shift_lsbs;
  702. return 0;
  703. }
  704. /** Reads and decodes block data successively.
  705. */
  706. static int read_decode_block(ALSDecContext *ctx, ALSBlockData *bd)
  707. {
  708. int ret;
  709. ret = read_block(ctx, bd);
  710. if (ret)
  711. return ret;
  712. ret = decode_block(ctx, bd);
  713. return ret;
  714. }
  715. /** Computes the number of samples left to decode for the current frame and
  716. * sets these samples to zero.
  717. */
  718. static void zero_remaining(unsigned int b, unsigned int b_max,
  719. const unsigned int *div_blocks, int32_t *buf)
  720. {
  721. unsigned int count = 0;
  722. while (b < b_max)
  723. count += div_blocks[b];
  724. if (count)
  725. memset(buf, 0, sizeof(*buf) * count);
  726. }
  727. /** Decodes blocks independently.
  728. */
  729. static int decode_blocks_ind(ALSDecContext *ctx, unsigned int ra_frame,
  730. unsigned int c, const unsigned int *div_blocks,
  731. unsigned int *js_blocks)
  732. {
  733. unsigned int b;
  734. ALSBlockData bd;
  735. memset(&bd, 0, sizeof(ALSBlockData));
  736. bd.ra_block = ra_frame;
  737. bd.use_ltp = ctx->use_ltp;
  738. bd.ltp_lag = ctx->ltp_lag;
  739. bd.ltp_gain = ctx->ltp_gain[0];
  740. bd.quant_cof = ctx->quant_cof[0];
  741. bd.lpc_cof = ctx->lpc_cof[0];
  742. bd.prev_raw_samples = ctx->prev_raw_samples;
  743. bd.raw_samples = ctx->raw_samples[c];
  744. for (b = 0; b < ctx->num_blocks; b++) {
  745. bd.shift_lsbs = 0;
  746. bd.block_length = div_blocks[b];
  747. if (read_decode_block(ctx, &bd)) {
  748. // damaged block, write zero for the rest of the frame
  749. zero_remaining(b, ctx->num_blocks, div_blocks, bd.raw_samples);
  750. return -1;
  751. }
  752. bd.raw_samples += div_blocks[b];
  753. bd.ra_block = 0;
  754. }
  755. return 0;
  756. }
  757. /** Decodes blocks dependently.
  758. */
  759. static int decode_blocks(ALSDecContext *ctx, unsigned int ra_frame,
  760. unsigned int c, const unsigned int *div_blocks,
  761. unsigned int *js_blocks)
  762. {
  763. ALSSpecificConfig *sconf = &ctx->sconf;
  764. unsigned int offset = 0;
  765. unsigned int b;
  766. ALSBlockData bd[2];
  767. memset(bd, 0, 2 * sizeof(ALSBlockData));
  768. bd[0].ra_block = ra_frame;
  769. bd[0].use_ltp = ctx->use_ltp;
  770. bd[0].ltp_lag = ctx->ltp_lag;
  771. bd[0].ltp_gain = ctx->ltp_gain[0];
  772. bd[0].quant_cof = ctx->quant_cof[0];
  773. bd[0].lpc_cof = ctx->lpc_cof[0];
  774. bd[0].prev_raw_samples = ctx->prev_raw_samples;
  775. bd[0].js_blocks = *js_blocks;
  776. bd[1].ra_block = ra_frame;
  777. bd[1].use_ltp = ctx->use_ltp;
  778. bd[1].ltp_lag = ctx->ltp_lag;
  779. bd[1].ltp_gain = ctx->ltp_gain[0];
  780. bd[1].quant_cof = ctx->quant_cof[0];
  781. bd[1].lpc_cof = ctx->lpc_cof[0];
  782. bd[1].prev_raw_samples = ctx->prev_raw_samples;
  783. bd[1].js_blocks = *(js_blocks + 1);
  784. // decode all blocks
  785. for (b = 0; b < ctx->num_blocks; b++) {
  786. unsigned int s;
  787. bd[0].shift_lsbs = 0;
  788. bd[1].shift_lsbs = 0;
  789. bd[0].block_length = div_blocks[b];
  790. bd[1].block_length = div_blocks[b];
  791. bd[0].raw_samples = ctx->raw_samples[c ] + offset;
  792. bd[1].raw_samples = ctx->raw_samples[c + 1] + offset;
  793. bd[0].raw_other = bd[1].raw_samples;
  794. bd[1].raw_other = bd[0].raw_samples;
  795. if(read_decode_block(ctx, &bd[0]) || read_decode_block(ctx, &bd[1])) {
  796. // damaged block, write zero for the rest of the frame
  797. zero_remaining(b, ctx->num_blocks, div_blocks, bd[0].raw_samples);
  798. zero_remaining(b, ctx->num_blocks, div_blocks, bd[1].raw_samples);
  799. return -1;
  800. }
  801. // reconstruct joint-stereo blocks
  802. if (bd[0].js_blocks) {
  803. if (bd[1].js_blocks)
  804. av_log(ctx->avctx, AV_LOG_WARNING, "Invalid channel pair!\n");
  805. for (s = 0; s < div_blocks[b]; s++)
  806. bd[0].raw_samples[s] = bd[1].raw_samples[s] - bd[0].raw_samples[s];
  807. } else if (bd[1].js_blocks) {
  808. for (s = 0; s < div_blocks[b]; s++)
  809. bd[1].raw_samples[s] = bd[1].raw_samples[s] + bd[0].raw_samples[s];
  810. }
  811. offset += div_blocks[b];
  812. bd[0].ra_block = 0;
  813. bd[1].ra_block = 0;
  814. }
  815. // store carryover raw samples,
  816. // the others channel raw samples are stored by the calling function.
  817. memmove(ctx->raw_samples[c] - sconf->max_order,
  818. ctx->raw_samples[c] - sconf->max_order + sconf->frame_length,
  819. sizeof(*ctx->raw_samples[c]) * sconf->max_order);
  820. return 0;
  821. }
  822. /** Reads the channel data.
  823. */
  824. static int read_channel_data(ALSDecContext *ctx, ALSChannelData *cd, int c)
  825. {
  826. GetBitContext *gb = &ctx->gb;
  827. ALSChannelData *current = cd;
  828. unsigned int channels = ctx->avctx->channels;
  829. int entries = 0;
  830. while (entries < channels && !(current->stop_flag = get_bits1(gb))) {
  831. current->master_channel = get_bits_long(gb, av_ceil_log2(channels));
  832. if (current->master_channel >= channels) {
  833. av_log(ctx->avctx, AV_LOG_ERROR, "Invalid master channel!\n");
  834. return -1;
  835. }
  836. if (current->master_channel != c) {
  837. current->time_diff_flag = get_bits1(gb);
  838. current->weighting[0] = mcc_weightings[av_clip(decode_rice(gb, 1) + 16, 0, 32)];
  839. current->weighting[1] = mcc_weightings[av_clip(decode_rice(gb, 2) + 14, 0, 32)];
  840. current->weighting[2] = mcc_weightings[av_clip(decode_rice(gb, 1) + 16, 0, 32)];
  841. if (current->time_diff_flag) {
  842. current->weighting[3] = mcc_weightings[av_clip(decode_rice(gb, 1) + 16, 0, 32)];
  843. current->weighting[4] = mcc_weightings[av_clip(decode_rice(gb, 1) + 16, 0, 32)];
  844. current->weighting[5] = mcc_weightings[av_clip(decode_rice(gb, 1) + 16, 0, 32)];
  845. current->time_diff_sign = get_bits1(gb);
  846. current->time_diff_index = get_bits(gb, ctx->ltp_lag_length - 3) + 3;
  847. }
  848. }
  849. current++;
  850. entries++;
  851. }
  852. if (entries == channels) {
  853. av_log(ctx->avctx, AV_LOG_ERROR, "Damaged channel data!\n");
  854. return -1;
  855. }
  856. align_get_bits(gb);
  857. return 0;
  858. }
  859. /** Recursively reverts the inter-channel correlation for a block.
  860. */
  861. static int revert_channel_correlation(ALSDecContext *ctx, ALSBlockData *bd,
  862. ALSChannelData **cd, int *reverted,
  863. unsigned int offset, int c)
  864. {
  865. ALSChannelData *ch = cd[c];
  866. unsigned int dep = 0;
  867. unsigned int channels = ctx->avctx->channels;
  868. if (reverted[c])
  869. return 0;
  870. reverted[c] = 1;
  871. while (dep < channels && !ch[dep].stop_flag) {
  872. revert_channel_correlation(ctx, bd, cd, reverted, offset,
  873. ch[dep].master_channel);
  874. dep++;
  875. }
  876. if (dep == channels) {
  877. av_log(ctx->avctx, AV_LOG_WARNING, "Invalid channel correlation!\n");
  878. return -1;
  879. }
  880. bd->use_ltp = ctx->use_ltp + c;
  881. bd->ltp_lag = ctx->ltp_lag + c;
  882. bd->ltp_gain = ctx->ltp_gain[c];
  883. bd->lpc_cof = ctx->lpc_cof[c];
  884. bd->quant_cof = ctx->quant_cof[c];
  885. bd->raw_samples = ctx->raw_samples[c] + offset;
  886. dep = 0;
  887. while (!ch[dep].stop_flag) {
  888. unsigned int smp;
  889. unsigned int begin = 1;
  890. unsigned int end = bd->block_length - 1;
  891. int64_t y;
  892. int32_t *master = ctx->raw_samples[ch[dep].master_channel] + offset;
  893. if (ch[dep].time_diff_flag) {
  894. int t = ch[dep].time_diff_index;
  895. if (ch[dep].time_diff_sign) {
  896. t = -t;
  897. begin -= t;
  898. } else {
  899. end -= t;
  900. }
  901. for (smp = begin; smp < end; smp++) {
  902. y = (1 << 6) +
  903. MUL64(ch[dep].weighting[0], master[smp - 1 ]) +
  904. MUL64(ch[dep].weighting[1], master[smp ]) +
  905. MUL64(ch[dep].weighting[2], master[smp + 1 ]) +
  906. MUL64(ch[dep].weighting[3], master[smp - 1 + t]) +
  907. MUL64(ch[dep].weighting[4], master[smp + t]) +
  908. MUL64(ch[dep].weighting[5], master[smp + 1 + t]);
  909. bd->raw_samples[smp] += y >> 7;
  910. }
  911. } else {
  912. for (smp = begin; smp < end; smp++) {
  913. y = (1 << 6) +
  914. MUL64(ch[dep].weighting[0], master[smp - 1]) +
  915. MUL64(ch[dep].weighting[1], master[smp ]) +
  916. MUL64(ch[dep].weighting[2], master[smp + 1]);
  917. bd->raw_samples[smp] += y >> 7;
  918. }
  919. }
  920. dep++;
  921. }
  922. return 0;
  923. }
  924. /** Reads the frame data.
  925. */
  926. static int read_frame_data(ALSDecContext *ctx, unsigned int ra_frame)
  927. {
  928. ALSSpecificConfig *sconf = &ctx->sconf;
  929. AVCodecContext *avctx = ctx->avctx;
  930. GetBitContext *gb = &ctx->gb;
  931. unsigned int div_blocks[32]; ///< block sizes.
  932. unsigned int c;
  933. unsigned int js_blocks[2];
  934. uint32_t bs_info = 0;
  935. // skip the size of the ra unit if present in the frame
  936. if (sconf->ra_flag == RA_FLAG_FRAMES && ra_frame)
  937. skip_bits_long(gb, 32);
  938. if (sconf->mc_coding && sconf->joint_stereo) {
  939. ctx->js_switch = get_bits1(gb);
  940. align_get_bits(gb);
  941. }
  942. if (!sconf->mc_coding || ctx->js_switch) {
  943. int independent_bs = !sconf->joint_stereo;
  944. for (c = 0; c < avctx->channels; c++) {
  945. js_blocks[0] = 0;
  946. js_blocks[1] = 0;
  947. get_block_sizes(ctx, div_blocks, &bs_info);
  948. // if joint_stereo and block_switching is set, independent decoding
  949. // is signaled via the first bit of bs_info
  950. if (sconf->joint_stereo && sconf->block_switching)
  951. if (bs_info >> 31)
  952. independent_bs = 2;
  953. // if this is the last channel, it has to be decoded independently
  954. if (c == avctx->channels - 1)
  955. independent_bs = 1;
  956. if (independent_bs) {
  957. if (decode_blocks_ind(ctx, ra_frame, c, div_blocks, js_blocks))
  958. return -1;
  959. independent_bs--;
  960. } else {
  961. if (decode_blocks(ctx, ra_frame, c, div_blocks, js_blocks))
  962. return -1;
  963. c++;
  964. }
  965. // store carryover raw samples
  966. memmove(ctx->raw_samples[c] - sconf->max_order,
  967. ctx->raw_samples[c] - sconf->max_order + sconf->frame_length,
  968. sizeof(*ctx->raw_samples[c]) * sconf->max_order);
  969. }
  970. } else { // multi-channel coding
  971. ALSBlockData bd;
  972. int b;
  973. int *reverted_channels = ctx->reverted_channels;
  974. unsigned int offset = 0;
  975. for (c = 0; c < avctx->channels; c++)
  976. if (ctx->chan_data[c] < ctx->chan_data_buffer) {
  977. av_log(ctx->avctx, AV_LOG_ERROR, "Invalid channel data!\n");
  978. return -1;
  979. }
  980. memset(&bd, 0, sizeof(ALSBlockData));
  981. memset(reverted_channels, 0, sizeof(*reverted_channels) * avctx->channels);
  982. bd.ra_block = ra_frame;
  983. bd.prev_raw_samples = ctx->prev_raw_samples;
  984. get_block_sizes(ctx, div_blocks, &bs_info);
  985. for (b = 0; b < ctx->num_blocks; b++) {
  986. bd.shift_lsbs = 0;
  987. bd.block_length = div_blocks[b];
  988. for (c = 0; c < avctx->channels; c++) {
  989. bd.use_ltp = ctx->use_ltp + c;
  990. bd.ltp_lag = ctx->ltp_lag + c;
  991. bd.ltp_gain = ctx->ltp_gain[c];
  992. bd.lpc_cof = ctx->lpc_cof[c];
  993. bd.quant_cof = ctx->quant_cof[c];
  994. bd.raw_samples = ctx->raw_samples[c] + offset;
  995. bd.raw_other = NULL;
  996. read_block(ctx, &bd);
  997. if (read_channel_data(ctx, ctx->chan_data[c], c))
  998. return -1;
  999. }
  1000. for (c = 0; c < avctx->channels; c++)
  1001. if (revert_channel_correlation(ctx, &bd, ctx->chan_data,
  1002. reverted_channels, offset, c))
  1003. return -1;
  1004. for (c = 0; c < avctx->channels; c++) {
  1005. bd.use_ltp = ctx->use_ltp + c;
  1006. bd.ltp_lag = ctx->ltp_lag + c;
  1007. bd.ltp_gain = ctx->ltp_gain[c];
  1008. bd.lpc_cof = ctx->lpc_cof[c];
  1009. bd.quant_cof = ctx->quant_cof[c];
  1010. bd.raw_samples = ctx->raw_samples[c] + offset;
  1011. decode_block(ctx, &bd);
  1012. }
  1013. memset(reverted_channels, 0, avctx->channels * sizeof(*reverted_channels));
  1014. offset += div_blocks[b];
  1015. bd.ra_block = 0;
  1016. }
  1017. // store carryover raw samples
  1018. for (c = 0; c < avctx->channels; c++)
  1019. memmove(ctx->raw_samples[c] - sconf->max_order,
  1020. ctx->raw_samples[c] - sconf->max_order + sconf->frame_length,
  1021. sizeof(*ctx->raw_samples[c]) * sconf->max_order);
  1022. }
  1023. // TODO: read_diff_float_data
  1024. return 0;
  1025. }
  1026. /** Decodes an ALS frame.
  1027. */
  1028. static int decode_frame(AVCodecContext *avctx,
  1029. void *data, int *data_size,
  1030. AVPacket *avpkt)
  1031. {
  1032. ALSDecContext *ctx = avctx->priv_data;
  1033. ALSSpecificConfig *sconf = &ctx->sconf;
  1034. const uint8_t *buffer = avpkt->data;
  1035. int buffer_size = avpkt->size;
  1036. int invalid_frame, size;
  1037. unsigned int c, sample, ra_frame, bytes_read, shift;
  1038. init_get_bits(&ctx->gb, buffer, buffer_size * 8);
  1039. // In the case that the distance between random access frames is set to zero
  1040. // (sconf->ra_distance == 0) no frame is treated as a random access frame.
  1041. // For the first frame, if prediction is used, all samples used from the
  1042. // previous frame are assumed to be zero.
  1043. ra_frame = sconf->ra_distance && !(ctx->frame_id % sconf->ra_distance);
  1044. // the last frame to decode might have a different length
  1045. if (sconf->samples != 0xFFFFFFFF)
  1046. ctx->cur_frame_length = FFMIN(sconf->samples - ctx->frame_id * (uint64_t) sconf->frame_length,
  1047. sconf->frame_length);
  1048. else
  1049. ctx->cur_frame_length = sconf->frame_length;
  1050. // decode the frame data
  1051. if ((invalid_frame = read_frame_data(ctx, ra_frame) < 0))
  1052. av_log(ctx->avctx, AV_LOG_WARNING,
  1053. "Reading frame data failed. Skipping RA unit.\n");
  1054. ctx->frame_id++;
  1055. // check for size of decoded data
  1056. size = ctx->cur_frame_length * avctx->channels *
  1057. (av_get_bits_per_sample_format(avctx->sample_fmt) >> 3);
  1058. if (size > *data_size) {
  1059. av_log(avctx, AV_LOG_ERROR, "Decoded data exceeds buffer size.\n");
  1060. return -1;
  1061. }
  1062. *data_size = size;
  1063. // transform decoded frame into output format
  1064. #define INTERLEAVE_OUTPUT(bps) \
  1065. { \
  1066. int##bps##_t *dest = (int##bps##_t*) data; \
  1067. shift = bps - ctx->avctx->bits_per_raw_sample; \
  1068. for (sample = 0; sample < ctx->cur_frame_length; sample++) \
  1069. for (c = 0; c < avctx->channels; c++) \
  1070. *dest++ = ctx->raw_samples[c][sample] << shift; \
  1071. }
  1072. if (ctx->avctx->bits_per_raw_sample <= 16) {
  1073. INTERLEAVE_OUTPUT(16)
  1074. } else {
  1075. INTERLEAVE_OUTPUT(32)
  1076. }
  1077. bytes_read = invalid_frame ? buffer_size :
  1078. (get_bits_count(&ctx->gb) + 7) >> 3;
  1079. return bytes_read;
  1080. }
  1081. /** Uninitializes the ALS decoder.
  1082. */
  1083. static av_cold int decode_end(AVCodecContext *avctx)
  1084. {
  1085. ALSDecContext *ctx = avctx->priv_data;
  1086. av_freep(&ctx->sconf.chan_pos);
  1087. av_freep(&ctx->use_ltp);
  1088. av_freep(&ctx->ltp_lag);
  1089. av_freep(&ctx->ltp_gain);
  1090. av_freep(&ctx->ltp_gain_buffer);
  1091. av_freep(&ctx->quant_cof);
  1092. av_freep(&ctx->lpc_cof);
  1093. av_freep(&ctx->quant_cof_buffer);
  1094. av_freep(&ctx->lpc_cof_buffer);
  1095. av_freep(&ctx->lpc_cof_reversed_buffer);
  1096. av_freep(&ctx->prev_raw_samples);
  1097. av_freep(&ctx->raw_samples);
  1098. av_freep(&ctx->raw_buffer);
  1099. av_freep(&ctx->chan_data);
  1100. av_freep(&ctx->chan_data_buffer);
  1101. av_freep(&ctx->reverted_channels);
  1102. return 0;
  1103. }
  1104. /** Initializes the ALS decoder.
  1105. */
  1106. static av_cold int decode_init(AVCodecContext *avctx)
  1107. {
  1108. unsigned int c;
  1109. unsigned int channel_size;
  1110. int num_buffers;
  1111. ALSDecContext *ctx = avctx->priv_data;
  1112. ALSSpecificConfig *sconf = &ctx->sconf;
  1113. ctx->avctx = avctx;
  1114. if (!avctx->extradata) {
  1115. av_log(avctx, AV_LOG_ERROR, "Missing required ALS extradata.\n");
  1116. return -1;
  1117. }
  1118. if (read_specific_config(ctx)) {
  1119. av_log(avctx, AV_LOG_ERROR, "Reading ALSSpecificConfig failed.\n");
  1120. decode_end(avctx);
  1121. return -1;
  1122. }
  1123. if (check_specific_config(ctx)) {
  1124. decode_end(avctx);
  1125. return -1;
  1126. }
  1127. if (sconf->floating) {
  1128. avctx->sample_fmt = SAMPLE_FMT_FLT;
  1129. avctx->bits_per_raw_sample = 32;
  1130. } else {
  1131. avctx->sample_fmt = sconf->resolution > 1
  1132. ? SAMPLE_FMT_S32 : SAMPLE_FMT_S16;
  1133. avctx->bits_per_raw_sample = (sconf->resolution + 1) * 8;
  1134. }
  1135. // set lag value for long-term prediction
  1136. ctx->ltp_lag_length = 8 + (avctx->sample_rate >= 96000) +
  1137. (avctx->sample_rate >= 192000);
  1138. // allocate quantized parcor coefficient buffer
  1139. num_buffers = sconf->mc_coding ? avctx->channels : 1;
  1140. ctx->quant_cof = av_malloc(sizeof(*ctx->quant_cof) * num_buffers);
  1141. ctx->lpc_cof = av_malloc(sizeof(*ctx->lpc_cof) * num_buffers);
  1142. ctx->quant_cof_buffer = av_malloc(sizeof(*ctx->quant_cof_buffer) *
  1143. num_buffers * sconf->max_order);
  1144. ctx->lpc_cof_buffer = av_malloc(sizeof(*ctx->lpc_cof_buffer) *
  1145. num_buffers * sconf->max_order);
  1146. ctx->lpc_cof_reversed_buffer = av_malloc(sizeof(*ctx->lpc_cof_buffer) *
  1147. sconf->max_order);
  1148. if (!ctx->quant_cof || !ctx->lpc_cof ||
  1149. !ctx->quant_cof_buffer || !ctx->lpc_cof_buffer ||
  1150. !ctx->lpc_cof_reversed_buffer) {
  1151. av_log(avctx, AV_LOG_ERROR, "Allocating buffer memory failed.\n");
  1152. return AVERROR(ENOMEM);
  1153. }
  1154. // assign quantized parcor coefficient buffers
  1155. for (c = 0; c < num_buffers; c++) {
  1156. ctx->quant_cof[c] = ctx->quant_cof_buffer + c * sconf->max_order;
  1157. ctx->lpc_cof[c] = ctx->lpc_cof_buffer + c * sconf->max_order;
  1158. }
  1159. // allocate and assign lag and gain data buffer for ltp mode
  1160. ctx->use_ltp = av_mallocz(sizeof(*ctx->use_ltp) * num_buffers);
  1161. ctx->ltp_lag = av_malloc (sizeof(*ctx->ltp_lag) * num_buffers);
  1162. ctx->ltp_gain = av_malloc (sizeof(*ctx->ltp_gain) * num_buffers);
  1163. ctx->ltp_gain_buffer = av_malloc (sizeof(*ctx->ltp_gain_buffer) *
  1164. num_buffers * 5);
  1165. if (!ctx->use_ltp || !ctx->ltp_lag ||
  1166. !ctx->ltp_gain || !ctx->ltp_gain_buffer) {
  1167. av_log(avctx, AV_LOG_ERROR, "Allocating buffer memory failed.\n");
  1168. decode_end(avctx);
  1169. return AVERROR(ENOMEM);
  1170. }
  1171. for (c = 0; c < num_buffers; c++)
  1172. ctx->ltp_gain[c] = ctx->ltp_gain_buffer + c * 5;
  1173. // allocate and assign channel data buffer for mcc mode
  1174. if (sconf->mc_coding) {
  1175. ctx->chan_data_buffer = av_malloc(sizeof(*ctx->chan_data_buffer) *
  1176. num_buffers);
  1177. ctx->chan_data = av_malloc(sizeof(ALSChannelData) *
  1178. num_buffers);
  1179. ctx->reverted_channels = av_malloc(sizeof(*ctx->reverted_channels) *
  1180. num_buffers);
  1181. if (!ctx->chan_data_buffer || !ctx->chan_data || !ctx->reverted_channels) {
  1182. av_log(avctx, AV_LOG_ERROR, "Allocating buffer memory failed.\n");
  1183. decode_end(avctx);
  1184. return AVERROR(ENOMEM);
  1185. }
  1186. for (c = 0; c < num_buffers; c++)
  1187. ctx->chan_data[c] = ctx->chan_data_buffer + c;
  1188. } else {
  1189. ctx->chan_data = NULL;
  1190. ctx->chan_data_buffer = NULL;
  1191. ctx->reverted_channels = NULL;
  1192. }
  1193. avctx->frame_size = sconf->frame_length;
  1194. channel_size = sconf->frame_length + sconf->max_order;
  1195. ctx->prev_raw_samples = av_malloc (sizeof(*ctx->prev_raw_samples) * sconf->max_order);
  1196. ctx->raw_buffer = av_mallocz(sizeof(*ctx-> raw_buffer) * avctx->channels * channel_size);
  1197. ctx->raw_samples = av_malloc (sizeof(*ctx-> raw_samples) * avctx->channels);
  1198. // allocate previous raw sample buffer
  1199. if (!ctx->prev_raw_samples || !ctx->raw_buffer|| !ctx->raw_samples) {
  1200. av_log(avctx, AV_LOG_ERROR, "Allocating buffer memory failed.\n");
  1201. decode_end(avctx);
  1202. return AVERROR(ENOMEM);
  1203. }
  1204. // assign raw samples buffers
  1205. ctx->raw_samples[0] = ctx->raw_buffer + sconf->max_order;
  1206. for (c = 1; c < avctx->channels; c++)
  1207. ctx->raw_samples[c] = ctx->raw_samples[c - 1] + channel_size;
  1208. return 0;
  1209. }
  1210. /** Flushes (resets) the frame ID after seeking.
  1211. */
  1212. static av_cold void flush(AVCodecContext *avctx)
  1213. {
  1214. ALSDecContext *ctx = avctx->priv_data;
  1215. ctx->frame_id = 0;
  1216. }
  1217. AVCodec als_decoder = {
  1218. "als",
  1219. CODEC_TYPE_AUDIO,
  1220. CODEC_ID_MP4ALS,
  1221. sizeof(ALSDecContext),
  1222. decode_init,
  1223. NULL,
  1224. decode_end,
  1225. decode_frame,
  1226. .flush = flush,
  1227. .capabilities = CODEC_CAP_SUBFRAMES,
  1228. .long_name = NULL_IF_CONFIG_SMALL("MPEG-4 Audio Lossless Coding (ALS)"),
  1229. };