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.

303 lines
9.9KB

  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/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. avctx->sample_fmt = SAMPLE_FMT_S16;
  77. avctx->channel_layout = (avctx->channels==2) ? CH_LAYOUT_STEREO : CH_LAYOUT_MONO;
  78. if(vlc_initialized) return 0;
  79. av_log(avctx, AV_LOG_DEBUG, "Initing VLC\n");
  80. scfi_vlc.table = scfi_table;
  81. scfi_vlc.table_allocated = 1 << MPC7_SCFI_BITS;
  82. if(init_vlc(&scfi_vlc, MPC7_SCFI_BITS, MPC7_SCFI_SIZE,
  83. &mpc7_scfi[1], 2, 1,
  84. &mpc7_scfi[0], 2, 1, INIT_VLC_USE_NEW_STATIC)){
  85. av_log(avctx, AV_LOG_ERROR, "Cannot init SCFI VLC\n");
  86. return -1;
  87. }
  88. dscf_vlc.table = dscf_table;
  89. dscf_vlc.table_allocated = 1 << MPC7_DSCF_BITS;
  90. if(init_vlc(&dscf_vlc, MPC7_DSCF_BITS, MPC7_DSCF_SIZE,
  91. &mpc7_dscf[1], 2, 1,
  92. &mpc7_dscf[0], 2, 1, INIT_VLC_USE_NEW_STATIC)){
  93. av_log(avctx, AV_LOG_ERROR, "Cannot init DSCF VLC\n");
  94. return -1;
  95. }
  96. hdr_vlc.table = hdr_table;
  97. hdr_vlc.table_allocated = 1 << MPC7_HDR_BITS;
  98. if(init_vlc(&hdr_vlc, MPC7_HDR_BITS, MPC7_HDR_SIZE,
  99. &mpc7_hdr[1], 2, 1,
  100. &mpc7_hdr[0], 2, 1, INIT_VLC_USE_NEW_STATIC)){
  101. av_log(avctx, AV_LOG_ERROR, "Cannot init HDR VLC\n");
  102. return -1;
  103. }
  104. for(i = 0; i < MPC7_QUANT_VLC_TABLES; i++){
  105. for(j = 0; j < 2; j++){
  106. quant_vlc[i][j].table = &quant_tables[quant_offsets[i*2 + j]];
  107. quant_vlc[i][j].table_allocated = quant_offsets[i*2 + j + 1] - quant_offsets[i*2 + j];
  108. if(init_vlc(&quant_vlc[i][j], 9, mpc7_quant_vlc_sizes[i],
  109. &mpc7_quant_vlc[i][j][1], 4, 2,
  110. &mpc7_quant_vlc[i][j][0], 4, 2, INIT_VLC_USE_NEW_STATIC)){
  111. av_log(avctx, AV_LOG_ERROR, "Cannot init QUANT VLC %i,%i\n",i,j);
  112. return -1;
  113. }
  114. }
  115. }
  116. vlc_initialized = 1;
  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 get_scale_idx(GetBitContext *gb, int ref)
  164. {
  165. int t = get_vlc2(gb, dscf_vlc.table, MPC7_DSCF_BITS, 1) - 7;
  166. if (t == 8)
  167. return get_bits(gb, 6);
  168. return ref + t;
  169. }
  170. static int mpc7_decode_frame(AVCodecContext * avctx,
  171. void *data, int *data_size,
  172. AVPacket *avpkt)
  173. {
  174. const uint8_t *buf = avpkt->data;
  175. int buf_size = avpkt->size;
  176. MPCContext *c = avctx->priv_data;
  177. GetBitContext gb;
  178. uint8_t *bits;
  179. int i, ch;
  180. int mb = -1;
  181. Band *bands = c->bands;
  182. int off;
  183. int bits_used, bits_avail;
  184. memset(bands, 0, sizeof(bands));
  185. if(buf_size <= 4){
  186. av_log(avctx, AV_LOG_ERROR, "Too small buffer passed (%i bytes)\n", buf_size);
  187. }
  188. bits = av_malloc(((buf_size - 1) & ~3) + FF_INPUT_BUFFER_PADDING_SIZE);
  189. c->dsp.bswap_buf((uint32_t*)bits, (const uint32_t*)(buf + 4), (buf_size - 4) >> 2);
  190. init_get_bits(&gb, bits, (buf_size - 4)* 8);
  191. skip_bits(&gb, buf[0]);
  192. /* read subband indexes */
  193. for(i = 0; i <= c->maxbands; i++){
  194. for(ch = 0; ch < 2; ch++){
  195. int t = 4;
  196. if(i) t = get_vlc2(&gb, hdr_vlc.table, MPC7_HDR_BITS, 1) - 5;
  197. if(t == 4) bands[i].res[ch] = get_bits(&gb, 4);
  198. else bands[i].res[ch] = bands[i-1].res[ch] + t;
  199. }
  200. if(bands[i].res[0] || bands[i].res[1]){
  201. mb = i;
  202. if(c->MSS) bands[i].msf = get_bits1(&gb);
  203. }
  204. }
  205. /* get scale indexes coding method */
  206. for(i = 0; i <= mb; i++)
  207. for(ch = 0; ch < 2; ch++)
  208. if(bands[i].res[ch]) bands[i].scfi[ch] = get_vlc2(&gb, scfi_vlc.table, MPC7_SCFI_BITS, 1);
  209. /* get scale indexes */
  210. for(i = 0; i <= mb; i++){
  211. for(ch = 0; ch < 2; ch++){
  212. if(bands[i].res[ch]){
  213. bands[i].scf_idx[ch][2] = c->oldDSCF[ch][i];
  214. bands[i].scf_idx[ch][0] = get_scale_idx(&gb, bands[i].scf_idx[ch][2]);
  215. switch(bands[i].scfi[ch]){
  216. case 0:
  217. bands[i].scf_idx[ch][1] = get_scale_idx(&gb, bands[i].scf_idx[ch][0]);
  218. bands[i].scf_idx[ch][2] = get_scale_idx(&gb, bands[i].scf_idx[ch][1]);
  219. break;
  220. case 1:
  221. bands[i].scf_idx[ch][1] = get_scale_idx(&gb, bands[i].scf_idx[ch][0]);
  222. bands[i].scf_idx[ch][2] = bands[i].scf_idx[ch][1];
  223. break;
  224. case 2:
  225. bands[i].scf_idx[ch][1] = bands[i].scf_idx[ch][0];
  226. bands[i].scf_idx[ch][2] = get_scale_idx(&gb, bands[i].scf_idx[ch][1]);
  227. break;
  228. case 3:
  229. bands[i].scf_idx[ch][2] = bands[i].scf_idx[ch][1] = bands[i].scf_idx[ch][0];
  230. break;
  231. }
  232. c->oldDSCF[ch][i] = bands[i].scf_idx[ch][2];
  233. }
  234. }
  235. }
  236. /* get quantizers */
  237. memset(c->Q, 0, sizeof(c->Q));
  238. off = 0;
  239. for(i = 0; i < BANDS; i++, off += SAMPLES_PER_BAND)
  240. for(ch = 0; ch < 2; ch++)
  241. idx_to_quant(c, &gb, bands[i].res[ch], c->Q[ch] + off);
  242. ff_mpc_dequantize_and_synth(c, mb, data);
  243. av_free(bits);
  244. bits_used = get_bits_count(&gb);
  245. bits_avail = (buf_size - 4) * 8;
  246. if(!buf[1] && ((bits_avail < bits_used) || (bits_used + 32 <= bits_avail))){
  247. av_log(NULL,0, "Error decoding frame: used %i of %i bits\n", bits_used, bits_avail);
  248. return -1;
  249. }
  250. if(c->frames_to_skip){
  251. c->frames_to_skip--;
  252. *data_size = 0;
  253. return buf_size;
  254. }
  255. *data_size = (buf[1] ? c->lastframelen : MPC_FRAME_SIZE) * 4;
  256. return buf_size;
  257. }
  258. static void mpc7_decode_flush(AVCodecContext *avctx)
  259. {
  260. MPCContext *c = avctx->priv_data;
  261. memset(c->oldDSCF, 0, sizeof(c->oldDSCF));
  262. c->frames_to_skip = 32;
  263. }
  264. AVCodec mpc7_decoder = {
  265. "mpc7",
  266. AVMEDIA_TYPE_AUDIO,
  267. CODEC_ID_MUSEPACK7,
  268. sizeof(MPCContext),
  269. mpc7_decode_init,
  270. NULL,
  271. NULL,
  272. mpc7_decode_frame,
  273. .flush = mpc7_decode_flush,
  274. .long_name = NULL_IF_CONFIG_SMALL("Musepack SV7"),
  275. };