]> git.sesse.net Git - ffmpeg/blob - libavcodec/mpc7.c
avcodec/mpc7: Apply offsets when creating VLCs
[ffmpeg] / libavcodec / mpc7.c
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 /**
23  * @file
24  * MPEG Audio Layer 1/2 -like codec with frames of 1152 samples
25  * divided into 32 subbands.
26  */
27
28 #include "libavutil/channel_layout.h"
29 #include "libavutil/internal.h"
30 #include "libavutil/lfg.h"
31 #include "avcodec.h"
32 #include "get_bits.h"
33 #include "internal.h"
34 #include "mpegaudiodsp.h"
35
36 #include "mpc.h"
37 #include "mpc7data.h"
38
39 static VLC scfi_vlc, dscf_vlc, hdr_vlc, quant_vlc[MPC7_QUANT_VLC_TABLES][2];
40
41 static const uint16_t quant_sizes[MPC7_QUANT_VLC_TABLES*2] =
42 {
43     512, 512, 512, 516, 512, 512, 512, 512, 512, 512, 512, 528, 512, 548
44 };
45
46
47 static av_cold int mpc7_decode_init(AVCodecContext * avctx)
48 {
49     int i, j;
50     MPCContext *c = avctx->priv_data;
51     GetBitContext gb;
52     LOCAL_ALIGNED_16(uint8_t, buf, [16]);
53     static int vlc_initialized = 0;
54
55     static VLC_TYPE quant_tables[7224][2];
56     VLC_TYPE (*quant_table)[2] = quant_tables;
57     const uint8_t *raw_quant_table = mpc7_quant_vlcs;
58
59     /* Musepack SV7 is always stereo */
60     if (avctx->channels != 2) {
61         avpriv_request_sample(avctx, "%d channels", avctx->channels);
62         return AVERROR_PATCHWELCOME;
63     }
64
65     if(avctx->extradata_size < 16){
66         av_log(avctx, AV_LOG_ERROR, "Too small extradata size (%i)!\n", avctx->extradata_size);
67         return AVERROR_INVALIDDATA;
68     }
69     memset(c->oldDSCF, 0, sizeof(c->oldDSCF));
70     av_lfg_init(&c->rnd, 0xDEADBEEF);
71     ff_bswapdsp_init(&c->bdsp);
72     ff_mpadsp_init(&c->mpadsp);
73     c->bdsp.bswap_buf((uint32_t *) buf, (const uint32_t *) avctx->extradata, 4);
74     init_get_bits(&gb, buf, 128);
75
76     c->IS = get_bits1(&gb);
77     c->MSS = get_bits1(&gb);
78     c->maxbands = get_bits(&gb, 6);
79     if(c->maxbands >= BANDS){
80         av_log(avctx, AV_LOG_ERROR, "Too many bands: %i\n", c->maxbands);
81         return AVERROR_INVALIDDATA;
82     }
83     skip_bits_long(&gb, 88);
84     c->gapless = get_bits1(&gb);
85     c->lastframelen = get_bits(&gb, 11);
86     av_log(avctx, AV_LOG_DEBUG, "IS: %d, MSS: %d, TG: %d, LFL: %d, bands: %d\n",
87             c->IS, c->MSS, c->gapless, c->lastframelen, c->maxbands);
88     c->frames_to_skip = 0;
89
90     avctx->sample_fmt = AV_SAMPLE_FMT_S16P;
91     avctx->channel_layout = AV_CH_LAYOUT_STEREO;
92
93     if(vlc_initialized) return 0;
94     av_log(avctx, AV_LOG_DEBUG, "Initing VLC\n");
95     INIT_VLC_STATIC_FROM_LENGTHS(&scfi_vlc, MPC7_SCFI_BITS, MPC7_SCFI_SIZE,
96                                  &mpc7_scfi[1], 2,
97                                  &mpc7_scfi[0], 2, 1, 0, 0, 1 << MPC7_SCFI_BITS);
98     INIT_VLC_STATIC_FROM_LENGTHS(&dscf_vlc, MPC7_DSCF_BITS, MPC7_DSCF_SIZE,
99                                  &mpc7_dscf[1], 2,
100                                  &mpc7_dscf[0], 2, 1, -7, 0, 1 << MPC7_DSCF_BITS);
101     INIT_VLC_STATIC_FROM_LENGTHS(&hdr_vlc, MPC7_HDR_BITS, MPC7_HDR_SIZE,
102                                  &mpc7_hdr[1], 2,
103                                  &mpc7_hdr[0], 2, 1, -5, 0, 1 << MPC7_HDR_BITS);
104     for(i = 0; i < MPC7_QUANT_VLC_TABLES; i++){
105         for(j = 0; j < 2; j++){
106             quant_vlc[i][j].table = quant_table;
107             quant_vlc[i][j].table_allocated = quant_sizes[i * 2 + j];
108             quant_table += quant_sizes[i * 2 + j];
109             ff_init_vlc_from_lengths(&quant_vlc[i][j], 9, mpc7_quant_vlc_sizes[i],
110                                      &raw_quant_table[1], 2,
111                                      &raw_quant_table[0], 2, 1,
112                                      mpc7_quant_vlc_off[i],
113                                      INIT_VLC_USE_NEW_STATIC, NULL);
114             raw_quant_table += 2 * mpc7_quant_vlc_sizes[i];
115         }
116     }
117     vlc_initialized = 1;
118     ff_mpa_synth_init_fixed();
119
120     return 0;
121 }
122
123 /**
124  * Fill samples for given subband
125  */
126 static inline void idx_to_quant(MPCContext *c, GetBitContext *gb, int idx, int *dst)
127 {
128     int i, i1, t;
129     switch(idx){
130     case -1:
131         for(i = 0; i < SAMPLES_PER_BAND; i++){
132             *dst++ = (av_lfg_get(&c->rnd) & 0x3FC) - 510;
133         }
134         break;
135     case 1:
136         i1 = get_bits1(gb);
137         for(i = 0; i < SAMPLES_PER_BAND/3; i++){
138             t = get_vlc2(gb, quant_vlc[0][i1].table, 9, 2);
139             *dst++ = mpc7_idx30[t];
140             *dst++ = mpc7_idx31[t];
141             *dst++ = mpc7_idx32[t];
142         }
143         break;
144     case 2:
145         i1 = get_bits1(gb);
146         for(i = 0; i < SAMPLES_PER_BAND/2; i++){
147             t = get_vlc2(gb, quant_vlc[1][i1].table, 9, 2);
148             *dst++ = mpc7_idx50[t];
149             *dst++ = mpc7_idx51[t];
150         }
151         break;
152     case  3: case  4: case  5: case  6: case  7:
153         i1 = get_bits1(gb);
154         for(i = 0; i < SAMPLES_PER_BAND; i++)
155             *dst++ = get_vlc2(gb, quant_vlc[idx-1][i1].table, 9, 2);
156         break;
157     case  8: case  9: case 10: case 11: case 12:
158     case 13: case 14: case 15: case 16: case 17:
159         t = (1 << (idx - 2)) - 1;
160         for(i = 0; i < SAMPLES_PER_BAND; i++)
161             *dst++ = get_bits(gb, idx - 1) - t;
162         break;
163     default: // case 0 and -2..-17
164         return;
165     }
166 }
167
168 static int get_scale_idx(GetBitContext *gb, int ref)
169 {
170     int t = get_vlc2(gb, dscf_vlc.table, MPC7_DSCF_BITS, 1);
171     if (t == 8)
172         return get_bits(gb, 6);
173     return ref + t;
174 }
175
176 static int mpc7_decode_frame(AVCodecContext * avctx, void *data,
177                              int *got_frame_ptr, AVPacket *avpkt)
178 {
179     AVFrame *frame     = data;
180     const uint8_t *buf = avpkt->data;
181     int buf_size;
182     MPCContext *c = avctx->priv_data;
183     GetBitContext gb;
184     int i, ch;
185     int mb = -1;
186     Band *bands = c->bands;
187     int off, ret, last_frame, skip;
188     int bits_used, bits_avail;
189
190     memset(bands, 0, sizeof(*bands) * (c->maxbands + 1));
191
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
203     skip       = buf[0];
204     last_frame = buf[1];
205     buf       += 4;
206     buf_size  -= 4;
207
208     /* get output buffer */
209     frame->nb_samples = MPC_FRAME_SIZE;
210     if ((ret = ff_get_buffer(avctx, frame, 0)) < 0)
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     if ((ret = init_get_bits8(&gb, c->bits, buf_size)) < 0)
219         return ret;
220     skip_bits_long(&gb, skip);
221
222     /* read subband indexes */
223     for(i = 0; i <= c->maxbands; i++){
224         for(ch = 0; ch < 2; ch++){
225             int t = i ? get_vlc2(&gb, hdr_vlc.table, MPC7_HDR_BITS, 1) : 4;
226             if(t == 4) bands[i].res[ch] = get_bits(&gb, 4);
227             else bands[i].res[ch] = bands[i-1].res[ch] + t;
228             if (bands[i].res[ch] < -1 || bands[i].res[ch] > 17) {
229                 av_log(avctx, AV_LOG_ERROR, "subband index invalid\n");
230                 return AVERROR_INVALIDDATA;
231             }
232         }
233
234         if(bands[i].res[0] || bands[i].res[1]){
235             mb = i;
236             if(c->MSS) bands[i].msf = get_bits1(&gb);
237         }
238     }
239     /* get scale indexes coding method */
240     for(i = 0; i <= mb; i++)
241         for(ch = 0; ch < 2; ch++)
242             if(bands[i].res[ch]) bands[i].scfi[ch] = get_vlc2(&gb, scfi_vlc.table, MPC7_SCFI_BITS, 1);
243     /* get scale indexes */
244     for(i = 0; i <= mb; i++){
245         for(ch = 0; ch < 2; ch++){
246             if(bands[i].res[ch]){
247                 bands[i].scf_idx[ch][2] = c->oldDSCF[ch][i];
248                 bands[i].scf_idx[ch][0] = get_scale_idx(&gb, bands[i].scf_idx[ch][2]);
249                 switch(bands[i].scfi[ch]){
250                 case 0:
251                     bands[i].scf_idx[ch][1] = get_scale_idx(&gb, bands[i].scf_idx[ch][0]);
252                     bands[i].scf_idx[ch][2] = get_scale_idx(&gb, bands[i].scf_idx[ch][1]);
253                     break;
254                 case 1:
255                     bands[i].scf_idx[ch][1] = get_scale_idx(&gb, bands[i].scf_idx[ch][0]);
256                     bands[i].scf_idx[ch][2] = bands[i].scf_idx[ch][1];
257                     break;
258                 case 2:
259                     bands[i].scf_idx[ch][1] = bands[i].scf_idx[ch][0];
260                     bands[i].scf_idx[ch][2] = get_scale_idx(&gb, bands[i].scf_idx[ch][1]);
261                     break;
262                 case 3:
263                     bands[i].scf_idx[ch][2] = bands[i].scf_idx[ch][1] = bands[i].scf_idx[ch][0];
264                     break;
265                 }
266                 c->oldDSCF[ch][i] = bands[i].scf_idx[ch][2];
267             }
268         }
269     }
270     /* get quantizers */
271     memset(c->Q, 0, sizeof(c->Q));
272     off = 0;
273     for(i = 0; i < BANDS; i++, off += SAMPLES_PER_BAND)
274         for(ch = 0; ch < 2; ch++)
275             idx_to_quant(c, &gb, bands[i].res[ch], c->Q[ch] + off);
276
277     ff_mpc_dequantize_and_synth(c, mb, (int16_t **)frame->extended_data, 2);
278     if(last_frame)
279         frame->nb_samples = c->lastframelen;
280
281     bits_used = get_bits_count(&gb);
282     bits_avail = buf_size * 8;
283     if (!last_frame && ((bits_avail < bits_used) || (bits_used + 32 <= bits_avail))) {
284         av_log(avctx, AV_LOG_ERROR, "Error decoding frame: used %i of %i bits\n", bits_used, bits_avail);
285         return AVERROR_INVALIDDATA;
286     }
287     if(c->frames_to_skip){
288         c->frames_to_skip--;
289         *got_frame_ptr = 0;
290         return avpkt->size;
291     }
292
293     *got_frame_ptr = 1;
294
295     return avpkt->size;
296 }
297
298 static void mpc7_decode_flush(AVCodecContext *avctx)
299 {
300     MPCContext *c = avctx->priv_data;
301
302     memset(c->oldDSCF, 0, sizeof(c->oldDSCF));
303     c->frames_to_skip = 32;
304 }
305
306 static av_cold int mpc7_decode_close(AVCodecContext *avctx)
307 {
308     MPCContext *c = avctx->priv_data;
309     av_freep(&c->bits);
310     c->buf_size = 0;
311     return 0;
312 }
313
314 AVCodec ff_mpc7_decoder = {
315     .name           = "mpc7",
316     .long_name      = NULL_IF_CONFIG_SMALL("Musepack SV7"),
317     .type           = AVMEDIA_TYPE_AUDIO,
318     .id             = AV_CODEC_ID_MUSEPACK7,
319     .priv_data_size = sizeof(MPCContext),
320     .init           = mpc7_decode_init,
321     .close          = mpc7_decode_close,
322     .decode         = mpc7_decode_frame,
323     .flush          = mpc7_decode_flush,
324     .capabilities   = AV_CODEC_CAP_DR1,
325     .sample_fmts    = (const enum AVSampleFormat[]) { AV_SAMPLE_FMT_S16P,
326                                                       AV_SAMPLE_FMT_NONE },
327 };