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.

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