]> git.sesse.net Git - ffmpeg/blob - libavcodec/gsmdec.c
lavc: add a null bitstream filter
[ffmpeg] / libavcodec / gsmdec.c
1 /*
2  * gsm 06.10 decoder
3  * Copyright (c) 2010 Reimar Döffinger <Reimar.Doeffinger@gmx.de>
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 /**
23  * @file
24  * GSM decoder
25  */
26
27 #include "libavutil/channel_layout.h"
28
29 #include "avcodec.h"
30 #include "bitstream.h"
31 #include "internal.h"
32 #include "msgsmdec.h"
33
34 #include "gsmdec_template.c"
35
36 static av_cold int gsm_init(AVCodecContext *avctx)
37 {
38     avctx->channels       = 1;
39     avctx->channel_layout = AV_CH_LAYOUT_MONO;
40     if (!avctx->sample_rate)
41         avctx->sample_rate = 8000;
42     avctx->sample_fmt     = AV_SAMPLE_FMT_S16;
43
44     switch (avctx->codec_id) {
45     case AV_CODEC_ID_GSM:
46         avctx->frame_size  = GSM_FRAME_SIZE;
47         avctx->block_align = GSM_BLOCK_SIZE;
48         break;
49     case AV_CODEC_ID_GSM_MS:
50         avctx->frame_size  = 2 * GSM_FRAME_SIZE;
51         if (!avctx->block_align)
52             avctx->block_align = GSM_MS_BLOCK_SIZE;
53         else
54             if (avctx->block_align < MSN_MIN_BLOCK_SIZE ||
55                 avctx->block_align > GSM_MS_BLOCK_SIZE  ||
56                 (avctx->block_align - MSN_MIN_BLOCK_SIZE) % 3) {
57                 av_log(avctx, AV_LOG_ERROR, "Invalid block alignment %d\n",
58                        avctx->block_align);
59                 return AVERROR_INVALIDDATA;
60             }
61     }
62
63     return 0;
64 }
65
66 static int gsm_decode_frame(AVCodecContext *avctx, void *data,
67                             int *got_frame_ptr, AVPacket *avpkt)
68 {
69     AVFrame *frame = data;
70     int res;
71     BitstreamContext bc;
72     const uint8_t *buf = avpkt->data;
73     int buf_size = avpkt->size;
74     int16_t *samples;
75
76     if (buf_size < avctx->block_align) {
77         av_log(avctx, AV_LOG_ERROR, "Packet is too small\n");
78         return AVERROR_INVALIDDATA;
79     }
80
81     /* get output buffer */
82     frame->nb_samples = avctx->frame_size;
83     if ((res = ff_get_buffer(avctx, frame, 0)) < 0) {
84         av_log(avctx, AV_LOG_ERROR, "get_buffer() failed\n");
85         return res;
86     }
87     samples = (int16_t *)frame->data[0];
88
89     switch (avctx->codec_id) {
90     case AV_CODEC_ID_GSM:
91         bitstream_init(&bc, buf, buf_size * 8);
92         if (bitstream_read(&bc, 4) != 0xd)
93             av_log(avctx, AV_LOG_WARNING, "Missing GSM magic!\n");
94         res = gsm_decode_block(avctx, samples, &bc, GSM_13000);
95         if (res < 0)
96             return res;
97         break;
98     case AV_CODEC_ID_GSM_MS:
99         res = ff_msgsm_decode_block(avctx, samples, buf,
100                                     (GSM_MS_BLOCK_SIZE - avctx->block_align) / 3);
101         if (res < 0)
102             return res;
103     }
104
105     *got_frame_ptr = 1;
106
107     return avctx->block_align;
108 }
109
110 static void gsm_flush(AVCodecContext *avctx)
111 {
112     GSMContext *s = avctx->priv_data;
113     memset(s, 0, sizeof(*s));
114 }
115
116 AVCodec ff_gsm_decoder = {
117     .name           = "gsm",
118     .long_name      = NULL_IF_CONFIG_SMALL("GSM"),
119     .type           = AVMEDIA_TYPE_AUDIO,
120     .id             = AV_CODEC_ID_GSM,
121     .priv_data_size = sizeof(GSMContext),
122     .init           = gsm_init,
123     .decode         = gsm_decode_frame,
124     .flush          = gsm_flush,
125     .capabilities   = AV_CODEC_CAP_DR1,
126 };
127
128 AVCodec ff_gsm_ms_decoder = {
129     .name           = "gsm_ms",
130     .long_name      = NULL_IF_CONFIG_SMALL("GSM Microsoft variant"),
131     .type           = AVMEDIA_TYPE_AUDIO,
132     .id             = AV_CODEC_ID_GSM_MS,
133     .priv_data_size = sizeof(GSMContext),
134     .init           = gsm_init,
135     .decode         = gsm_decode_frame,
136     .flush          = gsm_flush,
137     .capabilities   = AV_CODEC_CAP_DR1,
138 };