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.

349 lines
12KB

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