ogg: update event_flags with STREAM_/METADATA_UPDATED whenever metadata changes.
[platform/upstream/libav.git] / libavformat / flacdec.c
1 /*
2  * Raw FLAC demuxer
3  * Copyright (c) 2001 Fabrice Bellard
4  *
5  * This file is part of Libav.
6  *
7  * Libav 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  * Libav 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 Libav; 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;
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 (!s->pb->eof_reached && !metadata_last) {
53         avio_read(s->pb, header, 4);
54         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                 av_freep(&buffer);
68                 return AVERROR(EIO);
69             }
70             break;
71         /* skip metadata block for unsupported types */
72         default:
73             ret = avio_skip(s->pb, metadata_size);
74             if (ret < 0)
75                 return ret;
76         }
77
78         if (metadata_type == FLAC_METADATA_TYPE_STREAMINFO) {
79             FLACStreaminfo si;
80             /* STREAMINFO can only occur once */
81             if (found_streaminfo) {
82                 av_freep(&buffer);
83                 return AVERROR_INVALIDDATA;
84             }
85             if (metadata_size != FLAC_STREAMINFO_SIZE) {
86                 av_freep(&buffer);
87                 return AVERROR_INVALIDDATA;
88             }
89             found_streaminfo = 1;
90             st->codec->extradata      = buffer;
91             st->codec->extradata_size = metadata_size;
92             buffer = NULL;
93
94             /* get codec params from STREAMINFO header */
95             avpriv_flac_parse_streaminfo(st->codec, &si, st->codec->extradata);
96
97             /* set time base and duration */
98             if (si.samplerate > 0) {
99                 avpriv_set_pts_info(st, 64, 1, si.samplerate);
100                 if (si.samples > 0)
101                     st->duration = si.samples;
102             }
103         } else if (metadata_type == FLAC_METADATA_TYPE_CUESHEET) {
104             uint8_t isrc[13];
105             uint64_t start;
106             const uint8_t *offset;
107             int i, chapters, track, ti;
108             if (metadata_size < 431)
109                 return AVERROR_INVALIDDATA;
110             offset = buffer + 395;
111             chapters = bytestream_get_byte(&offset) - 1;
112             if (chapters <= 0)
113                 return AVERROR_INVALIDDATA;
114             for (i = 0; i < chapters; i++) {
115                 if (offset + 36 - buffer > metadata_size)
116                     return AVERROR_INVALIDDATA;
117                 start = bytestream_get_be64(&offset);
118                 track = bytestream_get_byte(&offset);
119                 bytestream_get_buffer(&offset, isrc, 12);
120                 isrc[12] = 0;
121                 offset += 14;
122                 ti = bytestream_get_byte(&offset);
123                 if (ti <= 0) return AVERROR_INVALIDDATA;
124                 offset += ti * 12;
125                 avpriv_new_chapter(s, track, st->time_base, start, AV_NOPTS_VALUE, isrc);
126             }
127         } else if (metadata_type == FLAC_METADATA_TYPE_PICTURE) {
128             ret = ff_flac_parse_picture(s, buffer, metadata_size);
129             av_freep(&buffer);
130             if (ret < 0) {
131                 av_log(s, AV_LOG_ERROR, "Error parsing attached picture.\n");
132                 return ret;
133             }
134         } else {
135             /* STREAMINFO must be the first block */
136             if (!found_streaminfo) {
137                 av_freep(&buffer);
138                 return AVERROR_INVALIDDATA;
139             }
140             /* process supported blocks other than STREAMINFO */
141             if (metadata_type == FLAC_METADATA_TYPE_VORBIS_COMMENT) {
142                 AVDictionaryEntry *chmask;
143
144                 ret = ff_vorbis_comment(s, &s->metadata, buffer, metadata_size, 1);
145                 if (ret < 0) {
146                     av_log(s, AV_LOG_WARNING, "error parsing VorbisComment metadata\n");
147                 } else if (ret > 0) {
148                     s->event_flags |= AVFMT_EVENT_FLAG_METADATA_UPDATED;
149                 }
150
151                 /* parse the channels mask if present */
152                 chmask = av_dict_get(s->metadata, "WAVEFORMATEXTENSIBLE_CHANNEL_MASK", NULL, 0);
153                 if (chmask) {
154                     uint64_t mask = strtol(chmask->value, NULL, 0);
155                     if (!mask || mask & ~0x3ffffULL) {
156                         av_log(s, AV_LOG_WARNING,
157                                "Invalid value of WAVEFORMATEXTENSIBLE_CHANNEL_MASK\n");
158                     } else {
159                         st->codec->channel_layout = mask;
160                         av_dict_set(&s->metadata, "WAVEFORMATEXTENSIBLE_CHANNEL_MASK", NULL, 0);
161                     }
162                 }
163             }
164             av_freep(&buffer);
165         }
166     }
167
168     ret = ff_replaygain_export(st, s->metadata);
169     if (ret < 0)
170         return ret;
171
172     return 0;
173 }
174
175 static int flac_probe(AVProbeData *p)
176 {
177     if (p->buf_size < 4 || memcmp(p->buf, "fLaC", 4))
178         return 0;
179     return AVPROBE_SCORE_EXTENSION;
180 }
181
182 AVInputFormat ff_flac_demuxer = {
183     .name           = "flac",
184     .long_name      = NULL_IF_CONFIG_SMALL("raw FLAC"),
185     .read_probe     = flac_probe,
186     .read_header    = flac_read_header,
187     .read_packet    = ff_raw_read_partial_packet,
188     .flags          = AVFMT_GENERIC_INDEX,
189     .extensions     = "flac",
190     .raw_codec_id   = AV_CODEC_ID_FLAC,
191 };