3 * Copyright (c) 2011 Justin Ruggles
5 * This file is part of FFmpeg.
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.
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.
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
22 #include "libavutil/channel_layout.h"
23 #include "libavutil/mathematics.h"
24 #include "libavutil/opt.h"
28 #define GSM_BLOCK_SIZE 33
29 #define GSM_BLOCK_SAMPLES 160
30 #define GSM_SAMPLE_RATE 8000
32 typedef struct GSMDemuxerContext {
37 static int gsm_probe(AVProbeData *p)
39 int valid = 0, invalid = 0;
41 while (b < p->buf + p->buf_size - 32) {
42 if ((*b & 0xf0) == 0xd0) {
49 if (valid >> 5 > invalid)
50 return AVPROBE_SCORE_EXTENSION + 1;
54 static int gsm_read_packet(AVFormatContext *s, AVPacket *pkt)
58 size = GSM_BLOCK_SIZE;
60 pkt->pos = avio_tell(s->pb);
61 pkt->stream_index = 0;
63 ret = av_get_packet(s->pb, pkt, size);
64 if (ret < GSM_BLOCK_SIZE) {
66 return ret < 0 ? ret : AVERROR(EIO);
69 pkt->pts = pkt->pos / GSM_BLOCK_SIZE;
74 static int gsm_read_header(AVFormatContext *s)
76 GSMDemuxerContext *c = s->priv_data;
77 AVStream *st = avformat_new_stream(s, NULL);
79 return AVERROR(ENOMEM);
81 st->codecpar->codec_type = AVMEDIA_TYPE_AUDIO;
82 st->codecpar->codec_id = s->iformat->raw_codec_id;
83 st->codecpar->channels = 1;
84 st->codecpar->channel_layout = AV_CH_LAYOUT_MONO;
85 st->codecpar->sample_rate = c->sample_rate;
86 st->codecpar->bit_rate = GSM_BLOCK_SIZE * 8 * c->sample_rate / GSM_BLOCK_SAMPLES;
88 avpriv_set_pts_info(st, 64, GSM_BLOCK_SAMPLES, GSM_SAMPLE_RATE);
93 static const AVOption options[] = {
94 { "sample_rate", "", offsetof(GSMDemuxerContext, sample_rate),
95 AV_OPT_TYPE_INT, {.i64 = GSM_SAMPLE_RATE}, 1, INT_MAX / GSM_BLOCK_SIZE,
96 AV_OPT_FLAG_DECODING_PARAM },
100 static const AVClass gsm_class = {
101 .class_name = "gsm demuxer",
102 .item_name = av_default_item_name,
104 .version = LIBAVUTIL_VERSION_INT,
107 AVInputFormat ff_gsm_demuxer = {
109 .long_name = NULL_IF_CONFIG_SMALL("raw GSM"),
110 .priv_data_size = sizeof(GSMDemuxerContext),
111 .read_probe = gsm_probe,
112 .read_header = gsm_read_header,
113 .read_packet = gsm_read_packet,
114 .flags = AVFMT_GENERIC_INDEX,
116 .raw_codec_id = AV_CODEC_ID_GSM,
117 .priv_class = &gsm_class,