]> git.sesse.net Git - ffmpeg/blob - libavformat/flacdec.c
Merge commit 'f34d3173fcfc7f3228095d509a64c4fa4b37b575'
[ffmpeg] / libavformat / flacdec.c
1 /*
2  * Raw FLAC demuxer
3  * Copyright (c) 2001 Fabrice Bellard
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 "libavcodec/flac.h"
23 #include "avformat.h"
24 #include "flac_picture.h"
25 #include "internal.h"
26 #include "rawdec.h"
27 #include "oggdec.h"
28 #include "vorbiscomment.h"
29 #include "replaygain.h"
30 #include "libavcodec/bytestream.h"
31
32 static int flac_read_header(AVFormatContext *s)
33 {
34     int ret, metadata_last=0, metadata_type, metadata_size, found_streaminfo=0;
35     uint8_t header[4];
36     uint8_t *buffer=NULL;
37     AVStream *st = avformat_new_stream(s, NULL);
38     if (!st)
39         return AVERROR(ENOMEM);
40     st->codec->codec_type = AVMEDIA_TYPE_AUDIO;
41     st->codec->codec_id = AV_CODEC_ID_FLAC;
42     st->need_parsing = AVSTREAM_PARSE_FULL_RAW;
43     /* the parameters will be extracted from the compressed bitstream */
44
45     /* if fLaC marker is not found, assume there is no header */
46     if (avio_rl32(s->pb) != MKTAG('f','L','a','C')) {
47         avio_seek(s->pb, -4, SEEK_CUR);
48         return 0;
49     }
50
51     /* process metadata blocks */
52     while (!url_feof(s->pb) && !metadata_last) {
53         avio_read(s->pb, header, 4);
54         avpriv_flac_parse_block_header(header, &metadata_last, &metadata_type,
55                                    &metadata_size);
56         switch (metadata_type) {
57         /* allocate and read metadata block for supported types */
58         case FLAC_METADATA_TYPE_STREAMINFO:
59         case FLAC_METADATA_TYPE_CUESHEET:
60         case FLAC_METADATA_TYPE_PICTURE:
61         case FLAC_METADATA_TYPE_VORBIS_COMMENT:
62             buffer = av_mallocz(metadata_size + FF_INPUT_BUFFER_PADDING_SIZE);
63             if (!buffer) {
64                 return AVERROR(ENOMEM);
65             }
66             if (avio_read(s->pb, buffer, metadata_size) != metadata_size) {
67                 RETURN_ERROR(AVERROR(EIO));
68             }
69             break;
70         /* skip metadata block for unsupported types */
71         default:
72             ret = avio_skip(s->pb, metadata_size);
73             if (ret < 0)
74                 return ret;
75         }
76
77         if (metadata_type == FLAC_METADATA_TYPE_STREAMINFO) {
78             FLACStreaminfo si;
79             /* STREAMINFO can only occur once */
80             if (found_streaminfo) {
81                 RETURN_ERROR(AVERROR_INVALIDDATA);
82             }
83             if (metadata_size != FLAC_STREAMINFO_SIZE) {
84                 RETURN_ERROR(AVERROR_INVALIDDATA);
85             }
86             found_streaminfo = 1;
87             st->codec->extradata      = buffer;
88             st->codec->extradata_size = metadata_size;
89             buffer = NULL;
90
91             /* get codec params from STREAMINFO header */
92             avpriv_flac_parse_streaminfo(st->codec, &si, st->codec->extradata);
93
94             /* set time base and duration */
95             if (si.samplerate > 0) {
96                 avpriv_set_pts_info(st, 64, 1, si.samplerate);
97                 if (si.samples > 0)
98                     st->duration = si.samples;
99             }
100         } else if (metadata_type == FLAC_METADATA_TYPE_CUESHEET) {
101             uint8_t isrc[13];
102             uint64_t start;
103             const uint8_t *offset;
104             int i, chapters, track, ti;
105             if (metadata_size < 431)
106                 RETURN_ERROR(AVERROR_INVALIDDATA);
107             offset = buffer + 395;
108             chapters = bytestream_get_byte(&offset) - 1;
109             if (chapters <= 0)
110                 RETURN_ERROR(AVERROR_INVALIDDATA);
111             for (i = 0; i < chapters; i++) {
112                 if (offset + 36 - buffer > metadata_size)
113                     RETURN_ERROR(AVERROR_INVALIDDATA);
114                 start = bytestream_get_be64(&offset);
115                 track = bytestream_get_byte(&offset);
116                 bytestream_get_buffer(&offset, isrc, 12);
117                 isrc[12] = 0;
118                 offset += 14;
119                 ti = bytestream_get_byte(&offset);
120                 if (ti <= 0) RETURN_ERROR(AVERROR_INVALIDDATA);
121                 offset += ti * 12;
122                 avpriv_new_chapter(s, track, st->time_base, start, AV_NOPTS_VALUE, isrc);
123             }
124             av_freep(&buffer);
125         } else if (metadata_type == FLAC_METADATA_TYPE_PICTURE) {
126             ret = ff_flac_parse_picture(s, buffer, metadata_size);
127             av_freep(&buffer);
128             if (ret < 0) {
129                 av_log(s, AV_LOG_ERROR, "Error parsing attached picture.\n");
130                 return ret;
131             }
132         } else {
133             /* STREAMINFO must be the first block */
134             if (!found_streaminfo) {
135                 RETURN_ERROR(AVERROR_INVALIDDATA);
136             }
137             /* process supported blocks other than STREAMINFO */
138             if (metadata_type == FLAC_METADATA_TYPE_VORBIS_COMMENT) {
139                 if (ff_vorbis_comment(s, &s->metadata, buffer, metadata_size)) {
140                     av_log(s, AV_LOG_WARNING, "error parsing VorbisComment metadata\n");
141                 }
142             }
143             av_freep(&buffer);
144         }
145     }
146
147     ret = ff_replaygain_export(st, s->metadata);
148     if (ret < 0)
149         return ret;
150
151     return 0;
152
153 fail:
154     av_free(buffer);
155     return ret;
156 }
157
158 static int flac_probe(AVProbeData *p)
159 {
160     if (p->buf_size < 4 || memcmp(p->buf, "fLaC", 4))
161         return 0;
162     return AVPROBE_SCORE_EXTENSION;
163 }
164
165 static av_unused int64_t flac_read_timestamp(AVFormatContext *s, int stream_index,
166                                              int64_t *ppos, int64_t pos_limit)
167 {
168     AVPacket pkt, out_pkt;
169     AVStream *st = s->streams[stream_index];
170     AVCodecParserContext *parser;
171     int ret;
172     int64_t pts = AV_NOPTS_VALUE;
173
174     if (avio_seek(s->pb, *ppos, SEEK_SET) < 0)
175         return AV_NOPTS_VALUE;
176
177     av_init_packet(&pkt);
178     parser = av_parser_init(st->codec->codec_id);
179     if (!parser){
180         return AV_NOPTS_VALUE;
181     }
182     parser->flags |= PARSER_FLAG_USE_CODEC_TS;
183
184     for (;;){
185         ret = ff_raw_read_partial_packet(s, &pkt);
186         if (ret < 0){
187             if (ret == AVERROR(EAGAIN))
188                 continue;
189             else
190                 break;
191         }
192         av_init_packet(&out_pkt);
193         ret = av_parser_parse2(parser, st->codec,
194                                &out_pkt.data, &out_pkt.size, pkt.data, pkt.size,
195                                pkt.pts, pkt.dts, *ppos);
196
197         av_free_packet(&pkt);
198         if (out_pkt.size){
199             int size = out_pkt.size;
200             if (parser->pts != AV_NOPTS_VALUE){
201                 // seeking may not have started from beginning of a frame
202                 // calculate frame start position from next frame backwards
203                 *ppos = parser->next_frame_offset - size;
204                 pts = parser->pts;
205                 break;
206             }
207         }
208     }
209     av_parser_close(parser);
210     return pts;
211 }
212
213 AVInputFormat ff_flac_demuxer = {
214     .name           = "flac",
215     .long_name      = NULL_IF_CONFIG_SMALL("raw FLAC"),
216     .read_probe     = flac_probe,
217     .read_header    = flac_read_header,
218     .read_packet    = ff_raw_read_partial_packet,
219     .read_timestamp = flac_read_timestamp,
220     .flags          = AVFMT_GENERIC_INDEX,
221     .extensions     = "flac",
222     .raw_codec_id   = AV_CODEC_ID_FLAC,
223 };