]> git.sesse.net Git - ffmpeg/blob - libavformat/g723_1.c
Replace remaining av_new_stream() with avformat_new_stream().
[ffmpeg] / libavformat / g723_1.c
1 /*
2  * G.723.1 demuxer
3  * Copyright (c) 2010 Mohamed Naufal Basheer
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  * G.723.1 demuxer
25  */
26
27 #include "avformat.h"
28
29 static const uint8_t frame_size[4] = {24, 20, 4, 1};
30
31 static int g723_1_init(AVFormatContext *s, AVFormatParameters *ap)
32 {
33     AVStream *st;
34
35     st = avformat_new_stream(s, NULL);
36     if (!st)
37         return AVERROR(ENOMEM);
38
39     st->codec->codec_type  = AVMEDIA_TYPE_AUDIO;
40     st->codec->codec_id    = CODEC_ID_G723_1;
41     st->codec->channels    = 1;
42     st->codec->sample_rate = 8000;
43
44     av_set_pts_info(st, 64, 1, st->codec->sample_rate);
45
46     return 0;
47 }
48
49 static int g723_1_read_packet(AVFormatContext *s, AVPacket *pkt)
50 {
51     int size, byte, ret;
52
53     pkt->pos = url_ftell(s->pb);
54     byte     = get_byte(s->pb);
55     size     = frame_size[byte & 3];
56
57     ret = av_new_packet(pkt, size);
58     if (ret < 0)
59         return ret;
60
61     pkt->data[0]      = byte;
62     pkt->duration     = 240;
63     pkt->stream_index = 0;
64
65     ret = get_buffer(s->pb, pkt->data + 1, size - 1);
66     if (ret < size - 1) {
67         av_free_packet(pkt);
68         return ret < 0 ? ret : AVERROR_EOF;
69     }
70
71     return pkt->size;
72 }
73
74 AVInputFormat ff_g723_1_demuxer = {
75     "g723_1",
76     NULL_IF_CONFIG_SMALL("G.723.1 format"),
77     0,
78     NULL,
79     g723_1_init,
80     g723_1_read_packet,
81     .extensions = "tco,rco",
82     .flags = AVFMT_GENERIC_INDEX
83 };