mpc7.c 10.0 KB

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