]> git.sesse.net Git - ffmpeg/blob - libavformat/g723_1.c
Merge remote-tracking branch 'qatar/master'
[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 #include "internal.h"
29
30 static const uint8_t frame_size[4] = {24, 20, 4, 1};
31
32 static int g723_1_init(AVFormatContext *s)
33 {
34     AVStream *st;
35
36     st = avformat_new_stream(s, NULL);
37     if (!st)
38         return AVERROR(ENOMEM);
39
40     st->codec->codec_type  = AVMEDIA_TYPE_AUDIO;
41     st->codec->codec_id    = CODEC_ID_G723_1;
42     st->codec->channels    = 1;
43     st->codec->sample_rate = 8000;
44
45     avpriv_set_pts_info(st, 64, 1, st->codec->sample_rate);
46
47     return 0;
48 }
49
50 static int g723_1_read_packet(AVFormatContext *s, AVPacket *pkt)
51 {
52     int size, byte, ret;
53
54     pkt->pos = avio_tell(s->pb);
55     byte     = avio_r8(s->pb);
56     size     = frame_size[byte & 3];
57
58     ret = av_new_packet(pkt, size);
59     if (ret < 0)
60         return ret;
61
62     pkt->data[0]      = byte;
63     pkt->duration     = 240;
64     pkt->stream_index = 0;
65
66     ret = avio_read(s->pb, pkt->data + 1, size - 1);
67     if (ret < size - 1) {
68         av_free_packet(pkt);
69         return ret < 0 ? ret : AVERROR_EOF;
70     }
71
72     return pkt->size;
73 }
74
75 AVInputFormat ff_g723_1_demuxer = {
76     .name        = "g723_1",
77     .long_name   = NULL_IF_CONFIG_SMALL("G.723.1 format"),
78     .read_header = g723_1_init,
79     .read_packet = g723_1_read_packet,
80     .extensions = "tco,rco",
81     .flags = AVFMT_GENERIC_INDEX
82 };