]> git.sesse.net Git - ffmpeg/blob - libavcodec/libgsmdec.c
lavc: Add support for increasing hardware frame pool sizes
[ffmpeg] / libavcodec / libgsmdec.c
1 /*
2  * Interface to libgsm for GSM decoding
3  * Copyright (c) 2005 Alban Bedel <albeu@free.fr>
4  * Copyright (c) 2006, 2007 Michel Bardiaux <mbardiaux@mediaxim.be>
5  *
6  * This file is part of Libav.
7  *
8  * Libav is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU Lesser General Public
10  * License as published by the Free Software Foundation; either
11  * version 2.1 of the License, or (at your option) any later version.
12  *
13  * Libav is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16  * Lesser General Public License for more details.
17  *
18  * You should have received a copy of the GNU Lesser General Public
19  * License along with Libav; if not, write to the Free Software
20  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
21  */
22
23 /**
24  * @file
25  * Interface to libgsm for GSM decoding
26  */
27
28 // The idiosyncrasies of GSM-in-WAV are explained at http://kbs.cs.tu-berlin.de/~jutta/toast.html
29
30 #include <gsm.h>
31
32 #include "libavutil/channel_layout.h"
33 #include "libavutil/common.h"
34
35 #include "avcodec.h"
36 #include "internal.h"
37 #include "gsm.h"
38
39 typedef struct LibGSMDecodeContext {
40     struct gsm_state *state;
41 } LibGSMDecodeContext;
42
43 static av_cold int libgsm_decode_init(AVCodecContext *avctx) {
44     LibGSMDecodeContext *s = avctx->priv_data;
45
46     avctx->channels       = 1;
47     avctx->channel_layout = AV_CH_LAYOUT_MONO;
48     avctx->sample_rate    = 8000;
49     avctx->sample_fmt     = AV_SAMPLE_FMT_S16;
50
51     s->state = gsm_create();
52
53     switch(avctx->codec_id) {
54     case AV_CODEC_ID_GSM:
55         avctx->frame_size  = GSM_FRAME_SIZE;
56         avctx->block_align = GSM_BLOCK_SIZE;
57         break;
58     case AV_CODEC_ID_GSM_MS: {
59         int one = 1;
60         gsm_option(s->state, GSM_OPT_WAV49, &one);
61         avctx->frame_size  = 2 * GSM_FRAME_SIZE;
62         avctx->block_align = GSM_MS_BLOCK_SIZE;
63         }
64     }
65
66     return 0;
67 }
68
69 static av_cold int libgsm_decode_close(AVCodecContext *avctx) {
70     LibGSMDecodeContext *s = avctx->priv_data;
71
72     gsm_destroy(s->state);
73     s->state = NULL;
74     return 0;
75 }
76
77 static int libgsm_decode_frame(AVCodecContext *avctx, void *data,
78                                int *got_frame_ptr, AVPacket *avpkt)
79 {
80     int i, ret;
81     LibGSMDecodeContext *s = avctx->priv_data;
82     AVFrame *frame         = data;
83     uint8_t *buf = avpkt->data;
84     int buf_size = avpkt->size;
85     int16_t *samples;
86
87     if (buf_size < avctx->block_align) {
88         av_log(avctx, AV_LOG_ERROR, "Packet is too small\n");
89         return AVERROR_INVALIDDATA;
90     }
91
92     /* get output buffer */
93     frame->nb_samples = avctx->frame_size;
94     if ((ret = ff_get_buffer(avctx, frame, 0)) < 0) {
95         av_log(avctx, AV_LOG_ERROR, "get_buffer() failed\n");
96         return ret;
97     }
98     samples = (int16_t *)frame->data[0];
99
100     for (i = 0; i < avctx->frame_size / GSM_FRAME_SIZE; i++) {
101         if ((ret = gsm_decode(s->state, buf, samples)) < 0)
102             return -1;
103         buf     += GSM_BLOCK_SIZE;
104         samples += GSM_FRAME_SIZE;
105     }
106
107     *got_frame_ptr = 1;
108
109     return avctx->block_align;
110 }
111
112 static void libgsm_flush(AVCodecContext *avctx) {
113     LibGSMDecodeContext *s = avctx->priv_data;
114     int one = 1;
115
116     gsm_destroy(s->state);
117     s->state = gsm_create();
118     if (avctx->codec_id == AV_CODEC_ID_GSM_MS)
119         gsm_option(s->state, GSM_OPT_WAV49, &one);
120 }
121
122 AVCodec ff_libgsm_decoder = {
123     .name           = "libgsm",
124     .long_name      = NULL_IF_CONFIG_SMALL("libgsm GSM"),
125     .type           = AVMEDIA_TYPE_AUDIO,
126     .id             = AV_CODEC_ID_GSM,
127     .priv_data_size = sizeof(LibGSMDecodeContext),
128     .init           = libgsm_decode_init,
129     .close          = libgsm_decode_close,
130     .decode         = libgsm_decode_frame,
131     .flush          = libgsm_flush,
132     .capabilities   = AV_CODEC_CAP_DR1,
133     .wrapper_name   = "libgsm",
134 };
135
136 AVCodec ff_libgsm_ms_decoder = {
137     .name           = "libgsm_ms",
138     .long_name      = NULL_IF_CONFIG_SMALL("libgsm GSM Microsoft variant"),
139     .type           = AVMEDIA_TYPE_AUDIO,
140     .id             = AV_CODEC_ID_GSM_MS,
141     .priv_data_size = sizeof(LibGSMDecodeContext),
142     .init           = libgsm_decode_init,
143     .close          = libgsm_decode_close,
144     .decode         = libgsm_decode_frame,
145     .flush          = libgsm_flush,
146     .capabilities   = AV_CODEC_CAP_DR1,
147     .wrapper_name   = "libgsm",
148 };