]> git.sesse.net Git - ffmpeg/blob - libavcodec/adxdec.c
adx: simplify adx_decode() by using get_sbits() to read residual samples
[ffmpeg] / libavcodec / adxdec.c
1 /*
2  * ADX ADPCM codecs
3  * Copyright (c) 2001,2003 BERO
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 #include "libavutil/intreadwrite.h"
23 #include "avcodec.h"
24 #include "adx.h"
25 #include "get_bits.h"
26
27 /**
28  * @file
29  * SEGA CRI adx codecs.
30  *
31  * Reference documents:
32  * http://ku-www.ss.titech.ac.jp/~yatsushi/adx.html
33  * adx2wav & wav2adx http://www.geocities.co.jp/Playtown/2004/
34  */
35
36 static av_cold int adx_decode_init(AVCodecContext *avctx)
37 {
38     avctx->sample_fmt = AV_SAMPLE_FMT_S16;
39     return 0;
40 }
41
42 /**
43  * Decode 32 samples from 18 bytes.
44  *
45  * A 16-bit scalar value is applied to 32 residuals, which then have a
46  * 2nd-order LPC filter applied to it to form the output signal for a single
47  * channel.
48  */
49 static void adx_decode(ADXContext *c, int16_t *out, const uint8_t *in, int ch)
50 {
51     ADXChannelState *prev = &c->prev[ch];
52     GetBitContext gb;
53     int scale = AV_RB16(in);
54     int i;
55     int s0, s1, s2, d;
56
57     init_get_bits(&gb, in + 2, (18 - 2) * 8);
58     s1 = prev->s1;
59     s2 = prev->s2;
60     for (i = 0; i < 32; i++) {
61         d  = get_sbits(&gb, 4);
62         s0 = (BASEVOL * d * scale + SCALE1 * s1 - SCALE2 * s2) >> 14;
63         s2 = s1;
64         s1 = av_clip_int16(s0);
65         *out = s1;
66         out += c->channels;
67     }
68     prev->s1 = s1;
69     prev->s2 = s2;
70 }
71
72 /**
73  * Decode stream header.
74  *
75  * @param avctx   codec context
76  * @param buf     packet data
77  * @param bufsize packet size
78  * @return data offset or negative error code if header is invalid
79  */
80 static int adx_decode_header(AVCodecContext *avctx, const uint8_t *buf,
81                              int bufsize)
82 {
83     ADXContext *c = avctx->priv_data;
84     int offset;
85
86     if (AV_RB16(buf) != 0x8000)
87         return AVERROR_INVALIDDATA;
88     offset = AV_RB16(buf + 2) + 4;
89     if (bufsize < offset || memcmp(buf + offset - 6, "(c)CRI", 6))
90         return AVERROR_INVALIDDATA;
91
92     c->channels = avctx->channels = buf[7];
93     if (avctx->channels > 2)
94         return AVERROR_INVALIDDATA;
95     avctx->sample_rate = AV_RB32(buf + 8);
96     if (avctx->sample_rate < 1 ||
97         avctx->sample_rate > INT_MAX / (avctx->channels * 18 * 8))
98         return AVERROR_INVALIDDATA;
99     avctx->bit_rate    = avctx->sample_rate * avctx->channels * 18 * 8 / 32;
100
101     return offset;
102 }
103
104 static int adx_decode_frame(AVCodecContext *avctx, void *data, int *data_size,
105                             AVPacket *avpkt)
106 {
107     const uint8_t *buf0 = avpkt->data;
108     int buf_size        = avpkt->size;
109     ADXContext *c       = avctx->priv_data;
110     int16_t *samples    = data;
111     const uint8_t *buf  = buf0;
112     int rest            = buf_size;
113
114     if (!c->header_parsed) {
115         int hdrsize = adx_decode_header(avctx, buf, rest);
116         if (hdrsize < 0) {
117             av_log(avctx, AV_LOG_ERROR, "invalid stream header\n");
118             return hdrsize;
119         }
120         c->header_parsed = 1;
121         buf  += hdrsize;
122         rest -= hdrsize;
123     }
124
125     /* 18 bytes of data are expanded into 32*2 bytes of audio,
126        so guard against buffer overflows */
127     if (rest / 18 > *data_size / 64)
128         rest = (*data_size / 64) * 18;
129
130     if (c->in_temp) {
131         int copysize = 18 * avctx->channels - c->in_temp;
132         memcpy(c->dec_temp + c->in_temp, buf, copysize);
133         rest -= copysize;
134         buf  += copysize;
135         adx_decode(c, samples, c->dec_temp, 0);
136         if (avctx->channels == 2)
137             adx_decode(c, samples + 1, c->dec_temp + 18, 1);
138         samples += 32 * c->channels;
139     }
140
141     while (rest >= 18 * c->channels) {
142         adx_decode(c, samples, buf, 0);
143         if (c->channels == 2)
144             adx_decode(c, samples + 1, buf + 18, 1);
145         rest    -= 18 * c->channels;
146         buf     += 18 * c->channels;
147         samples += 32 * c->channels;
148     }
149
150     c->in_temp = rest;
151     if (rest) {
152         memcpy(c->dec_temp, buf, rest);
153         buf += rest;
154     }
155     *data_size = (uint8_t*)samples - (uint8_t*)data;
156     return buf - buf0;
157 }
158
159 AVCodec ff_adpcm_adx_decoder = {
160     .name           = "adpcm_adx",
161     .type           = AVMEDIA_TYPE_AUDIO,
162     .id             = CODEC_ID_ADPCM_ADX,
163     .priv_data_size = sizeof(ADXContext),
164     .init           = adx_decode_init,
165     .decode         = adx_decode_frame,
166     .long_name      = NULL_IF_CONFIG_SMALL("SEGA CRI ADX ADPCM"),
167 };