2 * G.729 raw format demuxer
3 * Copyright (c) 2011 Vladimir Voroshilov
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/log.h"
23 #include "libavutil/opt.h"
28 typedef struct G729DemuxerContext {
34 static int g729_read_header(AVFormatContext *s)
37 G729DemuxerContext *s1 = s->priv_data;
39 st = avformat_new_stream(s, NULL);
41 return AVERROR(ENOMEM);
43 st->codecpar->codec_type = AVMEDIA_TYPE_AUDIO;
44 st->codecpar->codec_id = AV_CODEC_ID_G729;
45 st->codecpar->sample_rate = 8000;
46 st->codecpar->channels = 1;
48 if (s1 && s1->bit_rate)
49 s->bit_rate = s1->bit_rate;
53 st->codecpar->block_align = 8;
56 st->codecpar->block_align = 10;
59 av_log(s, AV_LOG_ERROR, "Invalid bit_rate value %"PRId64". "
60 "Only 6400 and 8000 b/s are supported.", s->bit_rate);
61 return AVERROR(EINVAL);
64 avpriv_set_pts_info(st, st->codecpar->block_align << 3, 1,
65 st->codecpar->sample_rate);
70 static int g729_read_packet(AVFormatContext *s, AVPacket *pkt)
72 AVStream *st = s->streams[0];
73 int ret = av_get_packet(s->pb, pkt, st->codecpar->block_align);
77 pkt->stream_index = 0;
78 pkt->dts = pkt->pts = pkt->pos / st->codecpar->block_align;
83 #define OFFSET(x) offsetof(G729DemuxerContext, x)
84 static const AVOption g729_options[] = {
85 { "bit_rate", "", OFFSET(bit_rate), AV_OPT_TYPE_INT, { .i64 = 8000 }, 0, INT_MAX, AV_OPT_FLAG_DECODING_PARAM },
89 static const AVClass g729_demuxer_class = {
90 .class_name = "g729 demuxer",
91 .item_name = av_default_item_name,
92 .option = g729_options,
93 .version = LIBAVUTIL_VERSION_INT,
96 AVInputFormat ff_g729_demuxer = {
98 .long_name = NULL_IF_CONFIG_SMALL("G.729 raw format demuxer"),
99 .priv_data_size = sizeof(G729DemuxerContext),
100 .read_header = g729_read_header,
101 .read_packet = g729_read_packet,
102 .flags = AVFMT_GENERIC_INDEX,
103 .extensions = "g729",
104 .priv_class = &g729_demuxer_class,