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.

345 lines
11KB

  1. /*
  2. * Musepack SV7 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. /**
  22. * @file
  23. * MPEG Audio Layer 1/2 -like codec with frames of 1152 samples
  24. * divided into 32 subbands.
  25. */
  26. #include "libavutil/channel_layout.h"
  27. #include "libavutil/internal.h"
  28. #include "libavutil/lfg.h"
  29. #include "avcodec.h"
  30. #include "get_bits.h"
  31. #include "internal.h"
  32. #include "mpegaudiodsp.h"
  33. #include "mpc.h"
  34. #include "mpc7data.h"
  35. static VLC scfi_vlc, dscf_vlc, hdr_vlc, quant_vlc[MPC7_QUANT_VLC_TABLES][2];
  36. static const uint16_t quant_offsets[MPC7_QUANT_VLC_TABLES*2 + 1] =
  37. {
  38. 0, 512, 1024, 1536, 2052, 2564, 3076, 3588, 4100, 4612, 5124,
  39. 5636, 6164, 6676, 7224
  40. };
  41. static av_cold int mpc7_decode_init(AVCodecContext * avctx)
  42. {
  43. int i, j, ret;
  44. MPCContext *c = avctx->priv_data;
  45. GetBitContext gb;
  46. LOCAL_ALIGNED_16(uint8_t, buf, [16]);
  47. static int vlc_initialized = 0;
  48. static VLC_TYPE scfi_table[1 << MPC7_SCFI_BITS][2];
  49. static VLC_TYPE dscf_table[1 << MPC7_DSCF_BITS][2];
  50. static VLC_TYPE hdr_table[1 << MPC7_HDR_BITS][2];
  51. static VLC_TYPE quant_tables[7224][2];
  52. /* Musepack SV7 is always stereo */
  53. if (avctx->channels != 2) {
  54. avpriv_request_sample(avctx, "%d channels", avctx->channels);
  55. return AVERROR_PATCHWELCOME;
  56. }
  57. if(avctx->extradata_size < 16){
  58. av_log(avctx, AV_LOG_ERROR, "Too small extradata size (%i)!\n", avctx->extradata_size);
  59. return AVERROR_INVALIDDATA;
  60. }
  61. memset(c->oldDSCF, 0, sizeof(c->oldDSCF));
  62. av_lfg_init(&c->rnd, 0xDEADBEEF);
  63. ff_bswapdsp_init(&c->bdsp);
  64. ff_mpadsp_init(&c->mpadsp);
  65. c->bdsp.bswap_buf((uint32_t *) buf, (const uint32_t *) avctx->extradata, 4);
  66. ff_mpc_init();
  67. init_get_bits(&gb, buf, 128);
  68. c->IS = get_bits1(&gb);
  69. c->MSS = get_bits1(&gb);
  70. c->maxbands = get_bits(&gb, 6);
  71. if(c->maxbands >= BANDS){
  72. av_log(avctx, AV_LOG_ERROR, "Too many bands: %i\n", c->maxbands);
  73. return AVERROR_INVALIDDATA;
  74. }
  75. skip_bits_long(&gb, 88);
  76. c->gapless = get_bits1(&gb);
  77. c->lastframelen = get_bits(&gb, 11);
  78. av_log(avctx, AV_LOG_DEBUG, "IS: %d, MSS: %d, TG: %d, LFL: %d, bands: %d\n",
  79. c->IS, c->MSS, c->gapless, c->lastframelen, c->maxbands);
  80. c->frames_to_skip = 0;
  81. avctx->sample_fmt = AV_SAMPLE_FMT_S16P;
  82. avctx->channel_layout = AV_CH_LAYOUT_STEREO;
  83. if(vlc_initialized) return 0;
  84. av_log(avctx, AV_LOG_DEBUG, "Initing VLC\n");
  85. scfi_vlc.table = scfi_table;
  86. scfi_vlc.table_allocated = 1 << MPC7_SCFI_BITS;
  87. if ((ret = init_vlc(&scfi_vlc, MPC7_SCFI_BITS, MPC7_SCFI_SIZE,
  88. &mpc7_scfi[1], 2, 1,
  89. &mpc7_scfi[0], 2, 1, INIT_VLC_USE_NEW_STATIC))) {
  90. av_log(avctx, AV_LOG_ERROR, "Cannot init SCFI VLC\n");
  91. return ret;
  92. }
  93. dscf_vlc.table = dscf_table;
  94. dscf_vlc.table_allocated = 1 << MPC7_DSCF_BITS;
  95. if ((ret = init_vlc(&dscf_vlc, MPC7_DSCF_BITS, MPC7_DSCF_SIZE,
  96. &mpc7_dscf[1], 2, 1,
  97. &mpc7_dscf[0], 2, 1, INIT_VLC_USE_NEW_STATIC))) {
  98. av_log(avctx, AV_LOG_ERROR, "Cannot init DSCF VLC\n");
  99. return ret;
  100. }
  101. hdr_vlc.table = hdr_table;
  102. hdr_vlc.table_allocated = 1 << MPC7_HDR_BITS;
  103. if ((ret = init_vlc(&hdr_vlc, MPC7_HDR_BITS, MPC7_HDR_SIZE,
  104. &mpc7_hdr[1], 2, 1,
  105. &mpc7_hdr[0], 2, 1, INIT_VLC_USE_NEW_STATIC))) {
  106. av_log(avctx, AV_LOG_ERROR, "Cannot init HDR VLC\n");
  107. return ret;
  108. }
  109. for(i = 0; i < MPC7_QUANT_VLC_TABLES; i++){
  110. for(j = 0; j < 2; j++){
  111. quant_vlc[i][j].table = &quant_tables[quant_offsets[i*2 + j]];
  112. quant_vlc[i][j].table_allocated = quant_offsets[i*2 + j + 1] - quant_offsets[i*2 + j];
  113. if ((ret = init_vlc(&quant_vlc[i][j], 9, mpc7_quant_vlc_sizes[i],
  114. &mpc7_quant_vlc[i][j][1], 4, 2,
  115. &mpc7_quant_vlc[i][j][0], 4, 2, INIT_VLC_USE_NEW_STATIC))) {
  116. av_log(avctx, AV_LOG_ERROR, "Cannot init QUANT VLC %i,%i\n",i,j);
  117. return ret;
  118. }
  119. }
  120. }
  121. vlc_initialized = 1;
  122. return 0;
  123. }
  124. /**
  125. * Fill samples for given subband
  126. */
  127. static inline void idx_to_quant(MPCContext *c, GetBitContext *gb, int idx, int *dst)
  128. {
  129. int i, i1, t;
  130. switch(idx){
  131. case -1:
  132. for(i = 0; i < SAMPLES_PER_BAND; i++){
  133. *dst++ = (av_lfg_get(&c->rnd) & 0x3FC) - 510;
  134. }
  135. break;
  136. case 1:
  137. i1 = get_bits1(gb);
  138. for(i = 0; i < SAMPLES_PER_BAND/3; i++){
  139. t = get_vlc2(gb, quant_vlc[0][i1].table, 9, 2);
  140. *dst++ = mpc7_idx30[t];
  141. *dst++ = mpc7_idx31[t];
  142. *dst++ = mpc7_idx32[t];
  143. }
  144. break;
  145. case 2:
  146. i1 = get_bits1(gb);
  147. for(i = 0; i < SAMPLES_PER_BAND/2; i++){
  148. t = get_vlc2(gb, quant_vlc[1][i1].table, 9, 2);
  149. *dst++ = mpc7_idx50[t];
  150. *dst++ = mpc7_idx51[t];
  151. }
  152. break;
  153. case 3: case 4: case 5: case 6: case 7:
  154. i1 = get_bits1(gb);
  155. for(i = 0; i < SAMPLES_PER_BAND; i++)
  156. *dst++ = get_vlc2(gb, quant_vlc[idx-1][i1].table, 9, 2) - mpc7_quant_vlc_off[idx-1];
  157. break;
  158. case 8: case 9: case 10: case 11: case 12:
  159. case 13: case 14: case 15: case 16: case 17:
  160. t = (1 << (idx - 2)) - 1;
  161. for(i = 0; i < SAMPLES_PER_BAND; i++)
  162. *dst++ = get_bits(gb, idx - 1) - t;
  163. break;
  164. default: // case 0 and -2..-17
  165. return;
  166. }
  167. }
  168. static int get_scale_idx(GetBitContext *gb, int ref)
  169. {
  170. int t = get_vlc2(gb, dscf_vlc.table, MPC7_DSCF_BITS, 1) - 7;
  171. if (t == 8)
  172. return get_bits(gb, 6);
  173. return ref + t;
  174. }
  175. static int mpc7_decode_frame(AVCodecContext * avctx, void *data,
  176. int *got_frame_ptr, AVPacket *avpkt)
  177. {
  178. AVFrame *frame = data;
  179. const uint8_t *buf = avpkt->data;
  180. int buf_size;
  181. MPCContext *c = avctx->priv_data;
  182. GetBitContext gb;
  183. int i, ch;
  184. int mb = -1;
  185. Band *bands = c->bands;
  186. int off, ret, last_frame, skip;
  187. int bits_used, bits_avail;
  188. memset(bands, 0, sizeof(*bands) * (c->maxbands + 1));
  189. buf_size = avpkt->size & ~3;
  190. if (buf_size <= 0) {
  191. av_log(avctx, AV_LOG_ERROR, "packet size is too small (%i bytes)\n",
  192. avpkt->size);
  193. return AVERROR_INVALIDDATA;
  194. }
  195. if (buf_size != avpkt->size) {
  196. av_log(avctx, AV_LOG_WARNING, "packet size is not a multiple of 4. "
  197. "extra bytes at the end will be skipped.\n");
  198. }
  199. skip = buf[0];
  200. last_frame = buf[1];
  201. buf += 4;
  202. buf_size -= 4;
  203. /* get output buffer */
  204. frame->nb_samples = MPC_FRAME_SIZE;
  205. if ((ret = ff_get_buffer(avctx, frame, 0)) < 0)
  206. return ret;
  207. av_fast_padded_malloc(&c->bits, &c->buf_size, buf_size);
  208. if (!c->bits)
  209. return AVERROR(ENOMEM);
  210. c->bdsp.bswap_buf((uint32_t *) c->bits, (const uint32_t *) buf,
  211. buf_size >> 2);
  212. if ((ret = init_get_bits8(&gb, c->bits, buf_size)) < 0)
  213. return ret;
  214. skip_bits_long(&gb, skip);
  215. /* read subband indexes */
  216. for(i = 0; i <= c->maxbands; i++){
  217. for(ch = 0; ch < 2; ch++){
  218. int t = 4;
  219. if(i) t = get_vlc2(&gb, hdr_vlc.table, MPC7_HDR_BITS, 1) - 5;
  220. if(t == 4) bands[i].res[ch] = get_bits(&gb, 4);
  221. else bands[i].res[ch] = bands[i-1].res[ch] + t;
  222. if (bands[i].res[ch] < -1 || bands[i].res[ch] > 17) {
  223. av_log(avctx, AV_LOG_ERROR, "subband index invalid\n");
  224. return AVERROR_INVALIDDATA;
  225. }
  226. }
  227. if(bands[i].res[0] || bands[i].res[1]){
  228. mb = i;
  229. if(c->MSS) bands[i].msf = get_bits1(&gb);
  230. }
  231. }
  232. /* get scale indexes coding method */
  233. for(i = 0; i <= mb; i++)
  234. for(ch = 0; ch < 2; ch++)
  235. if(bands[i].res[ch]) bands[i].scfi[ch] = get_vlc2(&gb, scfi_vlc.table, MPC7_SCFI_BITS, 1);
  236. /* get scale indexes */
  237. for(i = 0; i <= mb; i++){
  238. for(ch = 0; ch < 2; ch++){
  239. if(bands[i].res[ch]){
  240. bands[i].scf_idx[ch][2] = c->oldDSCF[ch][i];
  241. bands[i].scf_idx[ch][0] = get_scale_idx(&gb, bands[i].scf_idx[ch][2]);
  242. switch(bands[i].scfi[ch]){
  243. case 0:
  244. bands[i].scf_idx[ch][1] = get_scale_idx(&gb, bands[i].scf_idx[ch][0]);
  245. bands[i].scf_idx[ch][2] = get_scale_idx(&gb, bands[i].scf_idx[ch][1]);
  246. break;
  247. case 1:
  248. bands[i].scf_idx[ch][1] = get_scale_idx(&gb, bands[i].scf_idx[ch][0]);
  249. bands[i].scf_idx[ch][2] = bands[i].scf_idx[ch][1];
  250. break;
  251. case 2:
  252. bands[i].scf_idx[ch][1] = bands[i].scf_idx[ch][0];
  253. bands[i].scf_idx[ch][2] = get_scale_idx(&gb, bands[i].scf_idx[ch][1]);
  254. break;
  255. case 3:
  256. bands[i].scf_idx[ch][2] = bands[i].scf_idx[ch][1] = bands[i].scf_idx[ch][0];
  257. break;
  258. }
  259. c->oldDSCF[ch][i] = bands[i].scf_idx[ch][2];
  260. }
  261. }
  262. }
  263. /* get quantizers */
  264. memset(c->Q, 0, sizeof(c->Q));
  265. off = 0;
  266. for(i = 0; i < BANDS; i++, off += SAMPLES_PER_BAND)
  267. for(ch = 0; ch < 2; ch++)
  268. idx_to_quant(c, &gb, bands[i].res[ch], c->Q[ch] + off);
  269. ff_mpc_dequantize_and_synth(c, mb, (int16_t **)frame->extended_data, 2);
  270. if(last_frame)
  271. frame->nb_samples = c->lastframelen;
  272. bits_used = get_bits_count(&gb);
  273. bits_avail = buf_size * 8;
  274. if (!last_frame && ((bits_avail < bits_used) || (bits_used + 32 <= bits_avail))) {
  275. av_log(avctx, AV_LOG_ERROR, "Error decoding frame: used %i of %i bits\n", bits_used, bits_avail);
  276. return AVERROR_INVALIDDATA;
  277. }
  278. if(c->frames_to_skip){
  279. c->frames_to_skip--;
  280. *got_frame_ptr = 0;
  281. return avpkt->size;
  282. }
  283. *got_frame_ptr = 1;
  284. return avpkt->size;
  285. }
  286. static void mpc7_decode_flush(AVCodecContext *avctx)
  287. {
  288. MPCContext *c = avctx->priv_data;
  289. memset(c->oldDSCF, 0, sizeof(c->oldDSCF));
  290. c->frames_to_skip = 32;
  291. }
  292. static av_cold int mpc7_decode_close(AVCodecContext *avctx)
  293. {
  294. MPCContext *c = avctx->priv_data;
  295. av_freep(&c->bits);
  296. c->buf_size = 0;
  297. return 0;
  298. }
  299. AVCodec ff_mpc7_decoder = {
  300. .name = "mpc7",
  301. .long_name = NULL_IF_CONFIG_SMALL("Musepack SV7"),
  302. .type = AVMEDIA_TYPE_AUDIO,
  303. .id = AV_CODEC_ID_MUSEPACK7,
  304. .priv_data_size = sizeof(MPCContext),
  305. .init = mpc7_decode_init,
  306. .close = mpc7_decode_close,
  307. .decode = mpc7_decode_frame,
  308. .flush = mpc7_decode_flush,
  309. .capabilities = AV_CODEC_CAP_DR1,
  310. .sample_fmts = (const enum AVSampleFormat[]) { AV_SAMPLE_FMT_S16P,
  311. AV_SAMPLE_FMT_NONE },
  312. };