]> git.sesse.net Git - ffmpeg/blob - libavformat/ilbc.c
avformat: remove avio_flush() calls from the end of write_header functions
[ffmpeg] / libavformat / ilbc.c
1 /*
2  * iLBC storage file format
3  * Copyright (c) 2012 Martin Storsjo
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 #include "avformat.h"
23 #include "internal.h"
24
25 static const char mode20_header[] = "#!iLBC20\n";
26 static const char mode30_header[] = "#!iLBC30\n";
27
28 static int ilbc_write_header(AVFormatContext *s)
29 {
30     AVIOContext *pb = s->pb;
31     AVCodecParameters *par;
32
33     if (s->nb_streams != 1) {
34         av_log(s, AV_LOG_ERROR, "Unsupported number of streams\n");
35         return AVERROR(EINVAL);
36     }
37     par = s->streams[0]->codecpar;
38
39     if (par->codec_id != AV_CODEC_ID_ILBC) {
40         av_log(s, AV_LOG_ERROR, "Unsupported codec\n");
41         return AVERROR(EINVAL);
42     }
43
44     if (par->block_align == 50) {
45         avio_write(pb, mode30_header, sizeof(mode30_header) - 1);
46     } else if (par->block_align == 38) {
47         avio_write(pb, mode20_header, sizeof(mode20_header) - 1);
48     } else {
49         av_log(s, AV_LOG_ERROR, "Unsupported mode\n");
50         return AVERROR(EINVAL);
51     }
52     return 0;
53 }
54
55 static int ilbc_write_packet(AVFormatContext *s, AVPacket *pkt)
56 {
57     avio_write(s->pb, pkt->data, pkt->size);
58     return 0;
59 }
60
61 static int ilbc_probe(const AVProbeData *p)
62 {
63     // Only check for "#!iLBC" which matches both formats
64     if (!memcmp(p->buf, mode20_header, 6))
65         return AVPROBE_SCORE_MAX;
66     else
67         return 0;
68 }
69
70 static int ilbc_read_header(AVFormatContext *s)
71 {
72     AVIOContext *pb = s->pb;
73     AVStream *st;
74     uint8_t header[9];
75
76     avio_read(pb, header, 9);
77
78     st = avformat_new_stream(s, NULL);
79     if (!st)
80         return AVERROR(ENOMEM);
81     st->codecpar->codec_id = AV_CODEC_ID_ILBC;
82     st->codecpar->sample_rate = 8000;
83     st->codecpar->channels = 1;
84     st->codecpar->codec_type = AVMEDIA_TYPE_AUDIO;
85     st->start_time = 0;
86     avpriv_set_pts_info(st, 64, 1, st->codecpar->sample_rate);
87     if (!memcmp(header, mode20_header, sizeof(mode20_header) - 1)) {
88         st->codecpar->block_align = 38;
89         st->codecpar->bit_rate = 15200;
90     } else if (!memcmp(header, mode30_header, sizeof(mode30_header) - 1)) {
91         st->codecpar->block_align = 50;
92         st->codecpar->bit_rate = 13333;
93     } else {
94         av_log(s, AV_LOG_ERROR, "Unrecognized iLBC file header\n");
95         return AVERROR_INVALIDDATA;
96     }
97
98     return 0;
99 }
100
101 static int ilbc_read_packet(AVFormatContext *s,
102                           AVPacket *pkt)
103 {
104     AVCodecParameters *par = s->streams[0]->codecpar;
105     int ret;
106
107     if ((ret = av_new_packet(pkt, par->block_align)) < 0)
108         return ret;
109
110     pkt->stream_index = 0;
111     pkt->pos = avio_tell(s->pb);
112     pkt->duration = par->block_align == 38 ? 160 : 240;
113     if ((ret = avio_read(s->pb, pkt->data, par->block_align)) != par->block_align) {
114         av_packet_unref(pkt);
115         return ret < 0 ? ret : AVERROR(EIO);
116     }
117
118     return 0;
119 }
120
121 AVInputFormat ff_ilbc_demuxer = {
122     .name         = "ilbc",
123     .long_name    = NULL_IF_CONFIG_SMALL("iLBC storage"),
124     .read_probe   = ilbc_probe,
125     .read_header  = ilbc_read_header,
126     .read_packet  = ilbc_read_packet,
127     .flags        = AVFMT_GENERIC_INDEX,
128 };
129
130 AVOutputFormat ff_ilbc_muxer = {
131     .name         = "ilbc",
132     .long_name    = NULL_IF_CONFIG_SMALL("iLBC storage"),
133     .mime_type    = "audio/iLBC",
134     .extensions   = "lbc",
135     .audio_codec  = AV_CODEC_ID_ILBC,
136     .write_header = ilbc_write_header,
137     .write_packet = ilbc_write_packet,
138     .flags        = AVFMT_NOTIMESTAMPS,
139 };