]> git.sesse.net Git - ffmpeg/blob - libavformat/gsmdec.c
Merge remote-tracking branch 'qatar/master'
[ffmpeg] / libavformat / gsmdec.c
1 /*
2  * RAW GSM demuxer
3  * Copyright (c) 2011 Justin Ruggles
4  *
5  * This file is part of Libav.
6  *
7  * Libav 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  * Libav 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 Libav; if not, write to the Free Software
19  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20  */
21
22 #include "libavutil/mathematics.h"
23 #include "libavutil/opt.h"
24 #include "avformat.h"
25 #include "internal.h"
26
27 #define GSM_BLOCK_SIZE    33
28 #define GSM_BLOCK_SAMPLES 160
29 #define GSM_SAMPLE_RATE   8000
30
31 typedef struct {
32     AVClass *class;
33     int sample_rate;
34 } GSMDemuxerContext;
35
36 static int gsm_read_packet(AVFormatContext *s, AVPacket *pkt)
37 {
38     int ret, size;
39
40     size = GSM_BLOCK_SIZE;
41
42     pkt->pos = avio_tell(s->pb);
43     pkt->stream_index = 0;
44
45     ret = av_get_packet(s->pb, pkt, size);
46     if (ret < GSM_BLOCK_SIZE) {
47         av_free_packet(pkt);
48         return ret < 0 ? ret : AVERROR(EIO);
49     }
50     pkt->duration = 1;
51     pkt->pts      = pkt->pos / GSM_BLOCK_SIZE;
52
53     return 0;
54 }
55
56 static int gsm_read_header(AVFormatContext *s)
57 {
58     GSMDemuxerContext *c = s->priv_data;
59     AVStream *st = avformat_new_stream(s, NULL);
60     if (!st)
61         return AVERROR(ENOMEM);
62
63     st->codec->codec_type  = AVMEDIA_TYPE_AUDIO;
64     st->codec->codec_id    = s->iformat->raw_codec_id;
65     st->codec->channels    = 1;
66     st->codec->sample_rate = c->sample_rate;
67     st->codec->bit_rate    = GSM_BLOCK_SIZE * 8 * c->sample_rate / GSM_BLOCK_SAMPLES;
68
69     avpriv_set_pts_info(st, 64, GSM_BLOCK_SAMPLES, GSM_SAMPLE_RATE);
70
71     return 0;
72 }
73
74 static const AVOption options[] = {
75     { "sample_rate", "", offsetof(GSMDemuxerContext, sample_rate),
76        AV_OPT_TYPE_INT, {.dbl = GSM_SAMPLE_RATE}, 1, INT_MAX / GSM_BLOCK_SIZE,
77        AV_OPT_FLAG_DECODING_PARAM },
78     { NULL },
79 };
80
81 static const AVClass class = {
82     .class_name = "gsm demuxer",
83     .item_name  = av_default_item_name,
84     .option     = options,
85     .version    = LIBAVUTIL_VERSION_INT,
86 };
87
88 AVInputFormat ff_gsm_demuxer = {
89     .name           = "gsm",
90     .long_name      = NULL_IF_CONFIG_SMALL("raw GSM"),
91     .priv_data_size = sizeof(GSMDemuxerContext),
92     .read_header    = gsm_read_header,
93     .read_packet    = gsm_read_packet,
94     .flags          = AVFMT_GENERIC_INDEX,
95     .extensions     = "gsm",
96     .raw_codec_id   = AV_CODEC_ID_GSM,
97     .priv_class     = &class,
98 };