FFmpeg
Loading...
Searching...
No Matches
libgsmdec.c
Go to the documentation of this file.
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 FFmpeg.
7 *
8 * FFmpeg 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 * FFmpeg 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 FFmpeg; 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 "config.h"
31#include "config_components.h"
32#if HAVE_GSM_H
33#include <gsm.h>
34#else
35#include <gsm/gsm.h>
36#endif
37
39#include "libavutil/common.h"
40
41#include "avcodec.h"
42#include "codec_internal.h"
43#include "decode.h"
44#include "gsm.h"
45
46typedef struct LibGSMDecodeContext {
47 struct gsm_state *state;
49
52
55 if (!avctx->sample_rate)
56 avctx->sample_rate = 8000;
58
59 s->state = gsm_create();
60
61 switch(avctx->codec_id) {
62 case AV_CODEC_ID_GSM:
65 break;
66 case AV_CODEC_ID_GSM_MS: {
67 int one = 1;
68 gsm_option(s->state, GSM_OPT_WAV49, &one);
69 avctx->frame_size = 2 * GSM_FRAME_SIZE;
71 }
72 }
73
74 return 0;
75}
76
79
80 gsm_destroy(s->state);
81 s->state = NULL;
82 return 0;
83}
84
86 int *got_frame_ptr, AVPacket *avpkt)
87{
88 int i, ret;
90 uint8_t *buf = avpkt->data;
91 int buf_size = avpkt->size;
92 int16_t *samples;
93
94 if (buf_size < avctx->block_align) {
95 av_log(avctx, AV_LOG_ERROR, "Packet is too small\n");
97 }
98
99 /* get output buffer */
100 frame->nb_samples = avctx->frame_size;
101 if ((ret = ff_get_buffer(avctx, frame, 0)) < 0)
102 return ret;
103 samples = (int16_t *)frame->data[0];
104
105 for (i = 0; i < avctx->frame_size / GSM_FRAME_SIZE; i++) {
106 if ((ret = gsm_decode(s->state, buf, samples)) < 0)
107 return -1;
108 buf += GSM_BLOCK_SIZE;
109 samples += GSM_FRAME_SIZE;
110 }
111
112 *got_frame_ptr = 1;
113
114 return avctx->block_align;
115}
116
117static void libgsm_flush(AVCodecContext *avctx) {
119 int one = 1;
120
121 gsm_destroy(s->state);
122 s->state = gsm_create();
123 if (avctx->codec_id == AV_CODEC_ID_GSM_MS)
124 gsm_option(s->state, GSM_OPT_WAV49, &one);
125}
126
127#if CONFIG_LIBGSM_DECODER
129 .p.name = "libgsm",
130 CODEC_LONG_NAME("libgsm GSM"),
131 .p.type = AVMEDIA_TYPE_AUDIO,
132 .p.id = AV_CODEC_ID_GSM,
134 .p.wrapper_name = "libgsm",
135 .caps_internal = FF_CODEC_CAP_NOT_INIT_THREADSAFE,
136 .priv_data_size = sizeof(LibGSMDecodeContext),
140 .flush = libgsm_flush,
141};
142#endif
143#if CONFIG_LIBGSM_MS_DECODER
145 .p.name = "libgsm_ms",
146 CODEC_LONG_NAME("libgsm GSM Microsoft variant"),
147 .p.type = AVMEDIA_TYPE_AUDIO,
148 .p.id = AV_CODEC_ID_GSM_MS,
150 .p.wrapper_name = "libgsm",
151 .caps_internal = FF_CODEC_CAP_NOT_INIT_THREADSAFE,
152 .priv_data_size = sizeof(LibGSMDecodeContext),
156 .flush = libgsm_flush,
157};
158#endif
const FFCodec ff_libgsm_decoder
const FFCodec ff_libgsm_ms_decoder
static av_cold void close(AVCodecParserContext *s)
Definition apv_parser.c:197
Libavcodec external API header.
#define i(width, name, range_min, range_max)
Definition cbs_h264.c:63
#define s(width, name)
Definition cbs_vp9.c:198
Public libavutil channel layout APIs header.
#define FF_CODEC_CAP_NOT_INIT_THREADSAFE
The codec is not known to be init-threadsafe (i.e.
#define FF_CODEC_DECODE_CB(func)
#define CODEC_LONG_NAME(str)
common internal and external API header
#define NULL
Definition coverity.c:32
int ff_get_buffer(AVCodecContext *avctx, AVFrame *frame, int flags)
Get a buffer for a frame.
Definition decode.c:1777
static AVFrame * frame
int(* init)(AVBSFContext *ctx)
Definition dts2pts.c:608
#define AV_CODEC_CAP_DR1
Codec uses get_buffer() or get_encode_buffer() for allocating buffers and supports custom allocators.
Definition codec.h:49
#define AV_CODEC_CAP_CHANNEL_CONF
Codec should fill in channel configuration and samplerate instead of container.
Definition codec.h:94
@ AV_CODEC_ID_GSM
as in Berlin toast format
Definition codec_id.h:471
@ AV_CODEC_ID_GSM_MS
Definition codec_id.h:483
#define AV_CHANNEL_LAYOUT_MONO
void av_channel_layout_uninit(AVChannelLayout *channel_layout)
Free any allocated data in the channel layout and reset the channel count to 0.
#define AVERROR_INVALIDDATA
Invalid data found when processing input.
Definition error.h:61
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
Definition log.h:210
@ AVMEDIA_TYPE_AUDIO
Definition avutil.h:201
@ AV_SAMPLE_FMT_S16
signed 16 bits
Definition samplefmt.h:58
#define GSM_FRAME_SIZE
Definition gsm.h:30
#define GSM_BLOCK_SIZE
Definition gsm.h:25
#define GSM_MS_BLOCK_SIZE
Definition gsm.h:26
#define av_cold
Definition attributes.h:117
static av_cold int libgsm_decode_init(AVCodecContext *avctx)
Definition libgsmdec.c:50
static int libgsm_decode_frame(AVCodecContext *avctx, AVFrame *frame, int *got_frame_ptr, AVPacket *avpkt)
Definition libgsmdec.c:85
static void libgsm_flush(AVCodecContext *avctx)
Definition libgsmdec.c:117
static av_cold int libgsm_decode_close(AVCodecContext *avctx)
Definition libgsmdec.c:77
An AVChannelLayout holds information about the channel layout of audio data.
main external API structure.
Definition avcodec.h:443
AVChannelLayout ch_layout
Audio channel layout.
Definition avcodec.h:1055
enum AVSampleFormat sample_fmt
audio sample format
Definition avcodec.h:1047
int sample_rate
samples per second
Definition avcodec.h:1040
enum AVCodecID codec_id
Definition avcodec.h:453
int block_align
number of bytes per packet if constant and known or 0 Used by some WAV based audio codecs.
Definition avcodec.h:1075
int frame_size
Number of samples per channel in an audio frame.
Definition avcodec.h:1068
void * priv_data
Definition avcodec.h:470
This structure describes decoded (raw) audio or video data.
Definition frame.h:472
This structure stores compressed data.
Definition packet.h:580
int size
Definition packet.h:604
uint8_t * data
Definition packet.h:603
struct gsm_state * state
Definition libgsmdec.c:47
#define av_log(a,...)