]> git.sesse.net Git - ffmpeg/blob - libavcodec/g722dec.c
g722dec: set channel layout at initialization instead of validating it
[ffmpeg] / libavcodec / g722dec.c
1 /*
2  * Copyright (c) CMU 1993 Computer Science, Speech Group
3  *                        Chengxiang Lu and Alex Hauptmann
4  * Copyright (c) 2005 Steve Underwood <steveu at coppice.org>
5  * Copyright (c) 2009 Kenan Gillet
6  * Copyright (c) 2010 Martin Storsjo
7  *
8  * This file is part of Libav.
9  *
10  * Libav is free software; you can redistribute it and/or
11  * modify it under the terms of the GNU Lesser General Public
12  * License as published by the Free Software Foundation; either
13  * version 2.1 of the License, or (at your option) any later version.
14  *
15  * Libav is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
18  * Lesser General Public License for more details.
19  *
20  * You should have received a copy of the GNU Lesser General Public
21  * License along with Libav; if not, write to the Free Software
22  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
23  */
24
25 /**
26  * @file
27  * G.722 ADPCM audio decoder
28  *
29  * This G.722 decoder is a bit-exact implementation of the ITU G.722
30  * specification for all three specified bitrates - 64000bps, 56000bps
31  * and 48000bps. It passes the ITU tests.
32  *
33  * @note For the 56000bps and 48000bps bitrates, the lowest 1 or 2 bits
34  *       respectively of each byte are ignored.
35  */
36
37 #include "libavutil/audioconvert.h"
38 #include "avcodec.h"
39 #include "get_bits.h"
40 #include "g722.h"
41 #include "libavutil/opt.h"
42
43 #define OFFSET(x) offsetof(G722Context, x)
44 #define AD AV_OPT_FLAG_AUDIO_PARAM | AV_OPT_FLAG_DECODING_PARAM
45 static const AVOption options[] = {
46     { "bits_per_codeword", "Bits per G722 codeword", OFFSET(bits_per_codeword), AV_OPT_TYPE_FLAGS, { .i64 = 8 }, 6, 8, AD },
47     { NULL }
48 };
49
50 static const AVClass g722_decoder_class = {
51     .class_name = "g722 decoder",
52     .item_name  = av_default_item_name,
53     .option     = options,
54     .version    = LIBAVUTIL_VERSION_INT,
55 };
56
57 static av_cold int g722_decode_init(AVCodecContext * avctx)
58 {
59     G722Context *c = avctx->priv_data;
60
61     avctx->channels       = 1;
62     avctx->channel_layout = AV_CH_LAYOUT_MONO;
63     avctx->sample_fmt     = AV_SAMPLE_FMT_S16;
64
65     c->band[0].scale_factor = 8;
66     c->band[1].scale_factor = 2;
67     c->prev_samples_pos = 22;
68
69     avcodec_get_frame_defaults(&c->frame);
70     avctx->coded_frame = &c->frame;
71
72     return 0;
73 }
74
75 static const int16_t low_inv_quant5[32] = {
76      -35,   -35, -2919, -2195, -1765, -1458, -1219, -1023,
77     -858,  -714,  -587,  -473,  -370,  -276,  -190,  -110,
78     2919,  2195,  1765,  1458,  1219,  1023,   858,   714,
79      587,   473,   370,   276,   190,   110,    35,   -35
80 };
81
82 static const int16_t *low_inv_quants[3] = { ff_g722_low_inv_quant6,
83                                                     low_inv_quant5,
84                                             ff_g722_low_inv_quant4 };
85
86 static int g722_decode_frame(AVCodecContext *avctx, void *data,
87                              int *got_frame_ptr, AVPacket *avpkt)
88 {
89     G722Context *c = avctx->priv_data;
90     int16_t *out_buf;
91     int j, ret;
92     const int skip = 8 - c->bits_per_codeword;
93     const int16_t *quantizer_table = low_inv_quants[skip];
94     GetBitContext gb;
95
96     /* get output buffer */
97     c->frame.nb_samples = avpkt->size * 2;
98     if ((ret = avctx->get_buffer(avctx, &c->frame)) < 0) {
99         av_log(avctx, AV_LOG_ERROR, "get_buffer() failed\n");
100         return ret;
101     }
102     out_buf = (int16_t *)c->frame.data[0];
103
104     init_get_bits(&gb, avpkt->data, avpkt->size * 8);
105
106     for (j = 0; j < avpkt->size; j++) {
107         int ilow, ihigh, rlow, rhigh, dhigh;
108         int xout1, xout2;
109
110         ihigh = get_bits(&gb, 2);
111         ilow = get_bits(&gb, 6 - skip);
112         skip_bits(&gb, skip);
113
114         rlow = av_clip((c->band[0].scale_factor * quantizer_table[ilow] >> 10)
115                       + c->band[0].s_predictor, -16384, 16383);
116
117         ff_g722_update_low_predictor(&c->band[0], ilow >> (2 - skip));
118
119         dhigh = c->band[1].scale_factor * ff_g722_high_inv_quant[ihigh] >> 10;
120         rhigh = av_clip(dhigh + c->band[1].s_predictor, -16384, 16383);
121
122         ff_g722_update_high_predictor(&c->band[1], dhigh, ihigh);
123
124         c->prev_samples[c->prev_samples_pos++] = rlow + rhigh;
125         c->prev_samples[c->prev_samples_pos++] = rlow - rhigh;
126         ff_g722_apply_qmf(c->prev_samples + c->prev_samples_pos - 24,
127                           &xout1, &xout2);
128         *out_buf++ = av_clip_int16(xout1 >> 11);
129         *out_buf++ = av_clip_int16(xout2 >> 11);
130         if (c->prev_samples_pos >= PREV_SAMPLES_BUF_SIZE) {
131             memmove(c->prev_samples, c->prev_samples + c->prev_samples_pos - 22,
132                     22 * sizeof(c->prev_samples[0]));
133             c->prev_samples_pos = 22;
134         }
135     }
136
137     *got_frame_ptr   = 1;
138     *(AVFrame *)data = c->frame;
139
140     return avpkt->size;
141 }
142
143 AVCodec ff_adpcm_g722_decoder = {
144     .name           = "g722",
145     .type           = AVMEDIA_TYPE_AUDIO,
146     .id             = AV_CODEC_ID_ADPCM_G722,
147     .priv_data_size = sizeof(G722Context),
148     .init           = g722_decode_init,
149     .decode         = g722_decode_frame,
150     .capabilities   = CODEC_CAP_DR1,
151     .long_name      = NULL_IF_CONFIG_SMALL("G.722 ADPCM"),
152     .priv_class     = &g722_decoder_class,
153 };