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.

298 lines
10KB

  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 libavcodec/mpc7.c Musepack SV7 decoder
  23. * MPEG Audio Layer 1/2 -like codec with frames of 1152 samples
  24. * divided into 32 subbands.
  25. */
  26. #include "libavutil/lfg.h"
  27. #include "avcodec.h"
  28. #include "get_bits.h"
  29. #include "dsputil.h"
  30. #include "mpegaudio.h"
  31. #include "mpc.h"
  32. #include "mpc7data.h"
  33. #define BANDS 32
  34. #define SAMPLES_PER_BAND 36
  35. #define MPC_FRAME_SIZE (BANDS * SAMPLES_PER_BAND)
  36. static VLC scfi_vlc, dscf_vlc, hdr_vlc, quant_vlc[MPC7_QUANT_VLC_TABLES][2];
  37. static const uint16_t quant_offsets[MPC7_QUANT_VLC_TABLES*2 + 1] =
  38. {
  39. 0, 512, 1024, 1536, 2052, 2564, 3076, 3588, 4100, 4612, 5124,
  40. 5636, 6164, 6676, 7224
  41. };
  42. static av_cold int mpc7_decode_init(AVCodecContext * avctx)
  43. {
  44. int i, j;
  45. MPCContext *c = avctx->priv_data;
  46. GetBitContext gb;
  47. uint8_t buf[16];
  48. static int vlc_initialized = 0;
  49. static VLC_TYPE scfi_table[1 << MPC7_SCFI_BITS][2];
  50. static VLC_TYPE dscf_table[1 << MPC7_DSCF_BITS][2];
  51. static VLC_TYPE hdr_table[1 << MPC7_HDR_BITS][2];
  52. static VLC_TYPE quant_tables[7224][2];
  53. if(avctx->extradata_size < 16){
  54. av_log(avctx, AV_LOG_ERROR, "Too small extradata size (%i)!\n", avctx->extradata_size);
  55. return -1;
  56. }
  57. memset(c->oldDSCF, 0, sizeof(c->oldDSCF));
  58. av_lfg_init(&c->rnd, 0xDEADBEEF);
  59. dsputil_init(&c->dsp, avctx);
  60. c->dsp.bswap_buf((uint32_t*)buf, (const uint32_t*)avctx->extradata, 4);
  61. ff_mpc_init();
  62. init_get_bits(&gb, buf, 128);
  63. c->IS = get_bits1(&gb);
  64. c->MSS = get_bits1(&gb);
  65. c->maxbands = get_bits(&gb, 6);
  66. if(c->maxbands >= BANDS){
  67. av_log(avctx, AV_LOG_ERROR, "Too many bands: %i\n", c->maxbands);
  68. return -1;
  69. }
  70. skip_bits_long(&gb, 88);
  71. c->gapless = get_bits1(&gb);
  72. c->lastframelen = get_bits(&gb, 11);
  73. av_log(avctx, AV_LOG_DEBUG, "IS: %d, MSS: %d, TG: %d, LFL: %d, bands: %d\n",
  74. c->IS, c->MSS, c->gapless, c->lastframelen, c->maxbands);
  75. c->frames_to_skip = 0;
  76. if(vlc_initialized) return 0;
  77. av_log(avctx, AV_LOG_DEBUG, "Initing VLC\n");
  78. scfi_vlc.table = scfi_table;
  79. scfi_vlc.table_allocated = 1 << MPC7_SCFI_BITS;
  80. if(init_vlc(&scfi_vlc, MPC7_SCFI_BITS, MPC7_SCFI_SIZE,
  81. &mpc7_scfi[1], 2, 1,
  82. &mpc7_scfi[0], 2, 1, INIT_VLC_USE_NEW_STATIC)){
  83. av_log(avctx, AV_LOG_ERROR, "Cannot init SCFI VLC\n");
  84. return -1;
  85. }
  86. dscf_vlc.table = dscf_table;
  87. dscf_vlc.table_allocated = 1 << MPC7_DSCF_BITS;
  88. if(init_vlc(&dscf_vlc, MPC7_DSCF_BITS, MPC7_DSCF_SIZE,
  89. &mpc7_dscf[1], 2, 1,
  90. &mpc7_dscf[0], 2, 1, INIT_VLC_USE_NEW_STATIC)){
  91. av_log(avctx, AV_LOG_ERROR, "Cannot init DSCF VLC\n");
  92. return -1;
  93. }
  94. hdr_vlc.table = hdr_table;
  95. hdr_vlc.table_allocated = 1 << MPC7_HDR_BITS;
  96. if(init_vlc(&hdr_vlc, MPC7_HDR_BITS, MPC7_HDR_SIZE,
  97. &mpc7_hdr[1], 2, 1,
  98. &mpc7_hdr[0], 2, 1, INIT_VLC_USE_NEW_STATIC)){
  99. av_log(avctx, AV_LOG_ERROR, "Cannot init HDR VLC\n");
  100. return -1;
  101. }
  102. for(i = 0; i < MPC7_QUANT_VLC_TABLES; i++){
  103. for(j = 0; j < 2; j++){
  104. quant_vlc[i][j].table = &quant_tables[quant_offsets[i*2 + j]];
  105. quant_vlc[i][j].table_allocated = quant_offsets[i*2 + j + 1] - quant_offsets[i*2 + j];
  106. if(init_vlc(&quant_vlc[i][j], 9, mpc7_quant_vlc_sizes[i],
  107. &mpc7_quant_vlc[i][j][1], 4, 2,
  108. &mpc7_quant_vlc[i][j][0], 4, 2, INIT_VLC_USE_NEW_STATIC)){
  109. av_log(avctx, AV_LOG_ERROR, "Cannot init QUANT VLC %i,%i\n",i,j);
  110. return -1;
  111. }
  112. }
  113. }
  114. vlc_initialized = 1;
  115. avctx->sample_fmt = SAMPLE_FMT_S16;
  116. avctx->channel_layout = (avctx->channels==2) ? CH_LAYOUT_STEREO : CH_LAYOUT_MONO;
  117. return 0;
  118. }
  119. /**
  120. * Fill samples for given subband
  121. */
  122. static inline void idx_to_quant(MPCContext *c, GetBitContext *gb, int idx, int *dst)
  123. {
  124. int i, i1, t;
  125. switch(idx){
  126. case -1:
  127. for(i = 0; i < SAMPLES_PER_BAND; i++){
  128. *dst++ = (av_lfg_get(&c->rnd) & 0x3FC) - 510;
  129. }
  130. break;
  131. case 1:
  132. i1 = get_bits1(gb);
  133. for(i = 0; i < SAMPLES_PER_BAND/3; i++){
  134. t = get_vlc2(gb, quant_vlc[0][i1].table, 9, 2);
  135. *dst++ = mpc7_idx30[t];
  136. *dst++ = mpc7_idx31[t];
  137. *dst++ = mpc7_idx32[t];
  138. }
  139. break;
  140. case 2:
  141. i1 = get_bits1(gb);
  142. for(i = 0; i < SAMPLES_PER_BAND/2; i++){
  143. t = get_vlc2(gb, quant_vlc[1][i1].table, 9, 2);
  144. *dst++ = mpc7_idx50[t];
  145. *dst++ = mpc7_idx51[t];
  146. }
  147. break;
  148. case 3: case 4: case 5: case 6: case 7:
  149. i1 = get_bits1(gb);
  150. for(i = 0; i < SAMPLES_PER_BAND; i++)
  151. *dst++ = get_vlc2(gb, quant_vlc[idx-1][i1].table, 9, 2) - mpc7_quant_vlc_off[idx-1];
  152. break;
  153. case 8: case 9: case 10: case 11: case 12:
  154. case 13: case 14: case 15: case 16: case 17:
  155. t = (1 << (idx - 2)) - 1;
  156. for(i = 0; i < SAMPLES_PER_BAND; i++)
  157. *dst++ = get_bits(gb, idx - 1) - t;
  158. break;
  159. default: // case 0 and -2..-17
  160. return;
  161. }
  162. }
  163. static int mpc7_decode_frame(AVCodecContext * avctx,
  164. void *data, int *data_size,
  165. AVPacket *avpkt)
  166. {
  167. const uint8_t *buf = avpkt->data;
  168. int buf_size = avpkt->size;
  169. MPCContext *c = avctx->priv_data;
  170. GetBitContext gb;
  171. uint8_t *bits;
  172. int i, ch, t;
  173. int mb = -1;
  174. Band *bands = c->bands;
  175. int off;
  176. int bits_used, bits_avail;
  177. memset(bands, 0, sizeof(bands));
  178. if(buf_size <= 4){
  179. av_log(avctx, AV_LOG_ERROR, "Too small buffer passed (%i bytes)\n", buf_size);
  180. }
  181. bits = av_malloc(((buf_size - 1) & ~3) + FF_INPUT_BUFFER_PADDING_SIZE);
  182. c->dsp.bswap_buf((uint32_t*)bits, (const uint32_t*)(buf + 4), (buf_size - 4) >> 2);
  183. init_get_bits(&gb, bits, (buf_size - 4)* 8);
  184. skip_bits(&gb, buf[0]);
  185. /* read subband indexes */
  186. for(i = 0; i <= c->maxbands; i++){
  187. for(ch = 0; ch < 2; ch++){
  188. if(i) t = get_vlc2(&gb, hdr_vlc.table, MPC7_HDR_BITS, 1) - 5;
  189. if(!i || (t == 4)) bands[i].res[ch] = get_bits(&gb, 4);
  190. else bands[i].res[ch] = bands[i-1].res[ch] + t;
  191. }
  192. if(bands[i].res[0] || bands[i].res[1]){
  193. mb = i;
  194. if(c->MSS) bands[i].msf = get_bits1(&gb);
  195. }
  196. }
  197. /* get scale indexes coding method */
  198. for(i = 0; i <= mb; i++)
  199. for(ch = 0; ch < 2; ch++)
  200. if(bands[i].res[ch]) bands[i].scfi[ch] = get_vlc2(&gb, scfi_vlc.table, MPC7_SCFI_BITS, 1);
  201. /* get scale indexes */
  202. for(i = 0; i <= mb; i++){
  203. for(ch = 0; ch < 2; ch++){
  204. if(bands[i].res[ch]){
  205. bands[i].scf_idx[ch][2] = c->oldDSCF[ch][i];
  206. t = get_vlc2(&gb, dscf_vlc.table, MPC7_DSCF_BITS, 1) - 7;
  207. bands[i].scf_idx[ch][0] = (t == 8) ? get_bits(&gb, 6) : (bands[i].scf_idx[ch][2] + t);
  208. switch(bands[i].scfi[ch]){
  209. case 0:
  210. t = get_vlc2(&gb, dscf_vlc.table, MPC7_DSCF_BITS, 1) - 7;
  211. bands[i].scf_idx[ch][1] = (t == 8) ? get_bits(&gb, 6) : (bands[i].scf_idx[ch][0] + t);
  212. t = get_vlc2(&gb, dscf_vlc.table, MPC7_DSCF_BITS, 1) - 7;
  213. bands[i].scf_idx[ch][2] = (t == 8) ? get_bits(&gb, 6) : (bands[i].scf_idx[ch][1] + t);
  214. break;
  215. case 1:
  216. t = get_vlc2(&gb, dscf_vlc.table, MPC7_DSCF_BITS, 1) - 7;
  217. bands[i].scf_idx[ch][1] = (t == 8) ? get_bits(&gb, 6) : (bands[i].scf_idx[ch][0] + t);
  218. bands[i].scf_idx[ch][2] = bands[i].scf_idx[ch][1];
  219. break;
  220. case 2:
  221. bands[i].scf_idx[ch][1] = bands[i].scf_idx[ch][0];
  222. t = get_vlc2(&gb, dscf_vlc.table, MPC7_DSCF_BITS, 1) - 7;
  223. bands[i].scf_idx[ch][2] = (t == 8) ? get_bits(&gb, 6) : (bands[i].scf_idx[ch][1] + t);
  224. break;
  225. case 3:
  226. bands[i].scf_idx[ch][2] = bands[i].scf_idx[ch][1] = bands[i].scf_idx[ch][0];
  227. break;
  228. }
  229. c->oldDSCF[ch][i] = bands[i].scf_idx[ch][2];
  230. }
  231. }
  232. }
  233. /* get quantizers */
  234. memset(c->Q, 0, sizeof(c->Q));
  235. off = 0;
  236. for(i = 0; i < BANDS; i++, off += SAMPLES_PER_BAND)
  237. for(ch = 0; ch < 2; ch++)
  238. idx_to_quant(c, &gb, bands[i].res[ch], c->Q[ch] + off);
  239. ff_mpc_dequantize_and_synth(c, mb, data);
  240. av_free(bits);
  241. bits_used = get_bits_count(&gb);
  242. bits_avail = (buf_size - 4) * 8;
  243. if(!buf[1] && ((bits_avail < bits_used) || (bits_used + 32 <= bits_avail))){
  244. av_log(NULL,0, "Error decoding frame: used %i of %i bits\n", bits_used, bits_avail);
  245. return -1;
  246. }
  247. if(c->frames_to_skip){
  248. c->frames_to_skip--;
  249. *data_size = 0;
  250. return buf_size;
  251. }
  252. *data_size = (buf[1] ? c->lastframelen : MPC_FRAME_SIZE) * 4;
  253. return buf_size;
  254. }
  255. static void mpc7_decode_flush(AVCodecContext *avctx)
  256. {
  257. MPCContext *c = avctx->priv_data;
  258. memset(c->oldDSCF, 0, sizeof(c->oldDSCF));
  259. c->frames_to_skip = 32;
  260. }
  261. AVCodec mpc7_decoder = {
  262. "mpc7",
  263. CODEC_TYPE_AUDIO,
  264. CODEC_ID_MUSEPACK7,
  265. sizeof(MPCContext),
  266. mpc7_decode_init,
  267. NULL,
  268. NULL,
  269. mpc7_decode_frame,
  270. .flush = mpc7_decode_flush,
  271. .long_name = NULL_IF_CONFIG_SMALL("Musepack SV7"),
  272. };