]> git.sesse.net Git - ffmpeg/blob - libavcodec/libilbc.c
Merge commit 'c7b610aa0b1bac47eea0056b13fe6e982b85844a'
[ffmpeg] / libavcodec / libilbc.c
1 /*
2  * iLBC decoder/encoder stub
3  * Copyright (c) 2012 Martin Storsjo
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 #include <ilbc.h>
23
24 #include "avcodec.h"
25 #include "libavutil/common.h"
26 #include "libavutil/opt.h"
27 #include "internal.h"
28
29 static int get_mode(AVCodecContext *avctx)
30 {
31     if (avctx->block_align == 38)
32         return 20;
33     else if (avctx->block_align == 50)
34         return 30;
35     else if (avctx->bit_rate > 0)
36         return avctx->bit_rate <= 14000 ? 30 : 20;
37     else
38         return -1;
39 }
40
41 typedef struct ILBCDecContext {
42     const AVClass *class;
43     AVFrame frame;
44     iLBC_Dec_Inst_t decoder;
45     int enhance;
46 } ILBCDecContext;
47
48 static const AVOption ilbc_dec_options[] = {
49     { "enhance", "Enhance the decoded audio (adds delay)", offsetof(ILBCDecContext, enhance), AV_OPT_TYPE_INT, { .i64 = 0 }, 0, 1, AV_OPT_FLAG_AUDIO_PARAM | AV_OPT_FLAG_DECODING_PARAM },
50     { NULL }
51 };
52
53 static const AVClass ilbc_dec_class = {
54     .class_name = "libilbc",
55     .item_name  = av_default_item_name,
56     .option     = ilbc_dec_options,
57     .version    = LIBAVUTIL_VERSION_INT,
58 };
59
60 static av_cold int ilbc_decode_init(AVCodecContext *avctx)
61 {
62     ILBCDecContext *s  = avctx->priv_data;
63     int mode;
64
65     if ((mode = get_mode(avctx)) < 0) {
66         av_log(avctx, AV_LOG_ERROR, "iLBC frame mode not indicated\n");
67         return AVERROR(EINVAL);
68     }
69
70     WebRtcIlbcfix_InitDecode(&s->decoder, mode, s->enhance);
71     avcodec_get_frame_defaults(&s->frame);
72     avctx->coded_frame = &s->frame;
73
74     avctx->channels = 1;
75     avctx->sample_rate = 8000;
76     avctx->sample_fmt = AV_SAMPLE_FMT_S16;
77
78     return 0;
79 }
80
81 static int ilbc_decode_frame(AVCodecContext *avctx, void *data,
82                              int *got_frame_ptr, AVPacket *avpkt)
83 {
84     const uint8_t *buf = avpkt->data;
85     int buf_size       = avpkt->size;
86     ILBCDecContext *s  = avctx->priv_data;
87     int ret;
88
89     if (s->decoder.no_of_bytes > buf_size) {
90         av_log(avctx, AV_LOG_ERROR, "iLBC frame too short (%u, should be %u)\n",
91                buf_size, s->decoder.no_of_bytes);
92         return AVERROR_INVALIDDATA;
93     }
94
95     s->frame.nb_samples = s->decoder.blockl;
96     if ((ret = avctx->get_buffer(avctx, &s->frame)) < 0) {
97         av_log(avctx, AV_LOG_ERROR, "get_buffer() failed\n");
98         return ret;
99     }
100
101     WebRtcIlbcfix_DecodeImpl((WebRtc_Word16*) s->frame.data[0],
102                              (const WebRtc_UWord16*) buf, &s->decoder, 1);
103
104     *got_frame_ptr   = 1;
105     *(AVFrame *)data = s->frame;
106
107     return s->decoder.no_of_bytes;
108 }
109
110 AVCodec ff_libilbc_decoder = {
111     .name           = "libilbc",
112     .type           = AVMEDIA_TYPE_AUDIO,
113     .id             = AV_CODEC_ID_ILBC,
114     .priv_data_size = sizeof(ILBCDecContext),
115     .init           = ilbc_decode_init,
116     .decode         = ilbc_decode_frame,
117     .capabilities   = CODEC_CAP_DR1,
118     .long_name      = NULL_IF_CONFIG_SMALL("iLBC (Internet Low Bitrate Codec)"),
119     .priv_class     = &ilbc_dec_class,
120 };
121
122 typedef struct ILBCEncContext {
123     const AVClass *class;
124     iLBC_Enc_Inst_t encoder;
125     int mode;
126 } ILBCEncContext;
127
128 static const AVOption ilbc_enc_options[] = {
129     { "mode", "iLBC mode (20 or 30 ms frames)", offsetof(ILBCEncContext, mode), AV_OPT_TYPE_INT, { .i64 = 20 }, 20, 30, AV_OPT_FLAG_AUDIO_PARAM | AV_OPT_FLAG_ENCODING_PARAM },
130     { NULL }
131 };
132
133 static const AVClass ilbc_enc_class = {
134     .class_name = "libilbc",
135     .item_name  = av_default_item_name,
136     .option     = ilbc_enc_options,
137     .version    = LIBAVUTIL_VERSION_INT,
138 };
139
140 static av_cold int ilbc_encode_init(AVCodecContext *avctx)
141 {
142     ILBCEncContext *s = avctx->priv_data;
143     int mode;
144
145     if (avctx->sample_rate != 8000) {
146         av_log(avctx, AV_LOG_ERROR, "Only 8000Hz sample rate supported\n");
147         return AVERROR(EINVAL);
148     }
149
150     if (avctx->channels != 1) {
151         av_log(avctx, AV_LOG_ERROR, "Only mono supported\n");
152         return AVERROR(EINVAL);
153     }
154
155     if ((mode = get_mode(avctx)) > 0)
156         s->mode = mode;
157     else
158         s->mode = s->mode != 30 ? 20 : 30;
159     WebRtcIlbcfix_InitEncode(&s->encoder, s->mode);
160
161     avctx->block_align = s->encoder.no_of_bytes;
162     avctx->frame_size  = s->encoder.blockl;
163 #if FF_API_OLD_ENCODE_AUDIO
164     avctx->coded_frame = avcodec_alloc_frame();
165     if (!avctx->coded_frame)
166         return AVERROR(ENOMEM);
167 #endif
168
169     return 0;
170 }
171
172 static av_cold int ilbc_encode_close(AVCodecContext *avctx)
173 {
174 #if FF_API_OLD_ENCODE_AUDIO
175     av_freep(&avctx->coded_frame);
176 #endif
177     return 0;
178 }
179
180 static int ilbc_encode_frame(AVCodecContext *avctx, AVPacket *avpkt,
181                              const AVFrame *frame, int *got_packet_ptr)
182 {
183     ILBCEncContext *s = avctx->priv_data;
184     int ret;
185
186     if ((ret = ff_alloc_packet(avpkt, 50))) {
187         av_log(avctx, AV_LOG_ERROR, "Error getting output packet\n");
188         return ret;
189     }
190
191     WebRtcIlbcfix_EncodeImpl((WebRtc_UWord16*) avpkt->data, (const WebRtc_Word16*) frame->data[0], &s->encoder);
192
193     avpkt->size     = s->encoder.no_of_bytes;
194     *got_packet_ptr = 1;
195     return 0;
196 }
197
198 static const AVCodecDefault ilbc_encode_defaults[] = {
199     { "b", "0" },
200     { NULL }
201 };
202
203 AVCodec ff_libilbc_encoder = {
204     .name           = "libilbc",
205     .type           = AVMEDIA_TYPE_AUDIO,
206     .id             = AV_CODEC_ID_ILBC,
207     .priv_data_size = sizeof(ILBCEncContext),
208     .init           = ilbc_encode_init,
209     .encode2        = ilbc_encode_frame,
210     .close          = ilbc_encode_close,
211     .sample_fmts    = (const enum AVSampleFormat[]){ AV_SAMPLE_FMT_S16,
212                                                      AV_SAMPLE_FMT_NONE },
213     .long_name      = NULL_IF_CONFIG_SMALL("iLBC (Internet Low Bitrate Codec)"),
214     .defaults       = ilbc_encode_defaults,
215     .priv_class     = &ilbc_enc_class,
216 };