FFmpeg
Loading...
Searching...
No Matches
gsmdec.c
Go to the documentation of this file.
1/*
2 * gsm 06.10 decoder
3 * Copyright (c) 2010 Reimar Döffinger <Reimar.Doeffinger@gmx.de>
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/**
23 * @file
24 * GSM decoder
25 */
26
27#include "config_components.h"
28
31#include "avcodec.h"
32#include "codec_internal.h"
33#include "decode.h"
34#include "get_bits.h"
35#include "msgsmdec.h"
36
37#include "gsmdec_template.c"
38
40{
43 if (!avctx->sample_rate)
44 avctx->sample_rate = 8000;
46
47 switch (avctx->codec_id) {
48 case AV_CODEC_ID_GSM:
51 break;
53 avctx->frame_size = 2 * GSM_FRAME_SIZE;
54 if (!avctx->block_align)
56 else
57 if (avctx->block_align < MSN_MIN_BLOCK_SIZE ||
59 (avctx->block_align - MSN_MIN_BLOCK_SIZE) % 3) {
60 av_log(avctx, AV_LOG_ERROR, "Invalid block alignment %d\n",
61 avctx->block_align);
63 }
64 }
65
66 return 0;
67}
68
70 int *got_frame_ptr, AVPacket *avpkt)
71{
72 int res;
74 const uint8_t *buf = avpkt->data;
75 int buf_size = avpkt->size;
76 int16_t *samples;
77
78 if (buf_size < avctx->block_align) {
79 av_log(avctx, AV_LOG_ERROR, "Packet is too small\n");
81 }
82
83 /* get output buffer */
84 frame->nb_samples = avctx->frame_size;
85 if ((res = ff_get_buffer(avctx, frame, 0)) < 0)
86 return res;
87 samples = (int16_t *)frame->data[0];
88
89 switch (avctx->codec_id) {
90 case AV_CODEC_ID_GSM:
91 init_get_bits(&gb, buf, buf_size * 8);
92 if (get_bits(&gb, 4) != 0xd)
93 av_log(avctx, AV_LOG_WARNING, "Missing GSM magic!\n");
94 res = gsm_decode_block(avctx, samples, &gb, GSM_13000);
95 if (res < 0)
96 return res;
97 break;
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
111{
112 GSMContext *s = avctx->priv_data;
113 memset(s, 0, sizeof(*s));
114}
115
116#if CONFIG_GSM_DECODER
117const FFCodec ff_gsm_decoder = {
118 .p.name = "gsm",
119 CODEC_LONG_NAME("GSM"),
120 .p.type = AVMEDIA_TYPE_AUDIO,
121 .p.id = AV_CODEC_ID_GSM,
122 .priv_data_size = sizeof(GSMContext),
123 .init = gsm_init,
125 .flush = gsm_flush,
127};
128#endif
129#if CONFIG_GSM_MS_DECODER
131 .p.name = "gsm_ms",
132 CODEC_LONG_NAME("GSM Microsoft variant"),
133 .p.type = AVMEDIA_TYPE_AUDIO,
134 .p.id = AV_CODEC_ID_GSM_MS,
135 .priv_data_size = sizeof(GSMContext),
136 .init = gsm_init,
138 .flush = gsm_flush,
140};
141#endif
const FFCodec ff_gsm_decoder
const FFCodec ff_gsm_ms_decoder
Libavcodec external API header.
#define s(width, name)
Definition cbs_vp9.c:198
Public libavutil channel layout APIs header.
#define FF_CODEC_DECODE_CB(func)
#define CODEC_LONG_NAME(str)
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
bitstream reader API header.
static unsigned int get_bits(GetBitContext *s, int n)
Read 1-25 bits.
Definition get_bits.h:337
static int init_get_bits(GetBitContext *s, const uint8_t *buffer, int bit_size)
Initialize GetBitContext.
Definition get_bits.h:517
#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_WARNING
Something somehow does not look correct.
Definition log.h:216
#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
@ GSM_13000
Definition gsm.h:33
#define GSM_MS_BLOCK_SIZE
Definition gsm.h:26
#define MSN_MIN_BLOCK_SIZE
Definition gsm.h:27
GSM decoder.
static int gsm_decode_block(AVCodecContext *avctx, int16_t *samples, GetBitContext *gb, int mode)
static av_cold void gsm_flush(AVCodecContext *avctx)
Definition gsmdec.c:110
static av_cold int gsm_init(AVCodecContext *avctx)
Definition gsmdec.c:39
static int gsm_decode_frame(AVCodecContext *avctx, AVFrame *frame, int *got_frame_ptr, AVPacket *avpkt)
Definition gsmdec.c:69
Macro definitions for various function/variable attributes.
#define av_cold
Definition attributes.h:117
int ff_msgsm_decode_block(AVCodecContext *avctx, int16_t *samples, const uint8_t *buf, int mode)
Definition msgsmdec.c:29
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
#define av_log(a,...)