3 * Copyright (c) 2007 Konstantin Shishkov
5 * This file is part of Libav.
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.
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.
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
22 #include "libavcodec/get_bits.h"
23 #include "libavcodec/unary.h"
27 #include "avio_internal.h"
30 #define MKMPCTAG(a, b) (a | (b << 8))
32 #define TAG_MPCK MKTAG('M','P','C','K')
36 TAG_STREAMHDR = MKMPCTAG('S','H'),
37 TAG_STREAMEND = MKMPCTAG('S','E'),
39 TAG_AUDIOPACKET = MKMPCTAG('A','P'),
41 TAG_SEEKTBLOFF = MKMPCTAG('S','O'),
42 TAG_SEEKTABLE = MKMPCTAG('S','T'),
44 TAG_REPLAYGAIN = MKMPCTAG('R','G'),
45 TAG_ENCINFO = MKMPCTAG('E','I'),
48 static const int mpc8_rate[8] = { 44100, 48000, 37800, 32000, -1, -1, -1, -1 };
50 typedef struct MPCContext {
58 static inline int64_t bs_get_v(uint8_t **bs)
76 static int mpc8_probe(AVProbeData *p)
78 uint8_t *bs = p->buf + 4;
79 uint8_t *bs_end = bs + p->buf_size;
84 if (AV_RL32(p->buf) != TAG_MPCK)
86 while (bs < bs_end + 3) {
87 int header_found = (bs[0] == 'S' && bs[1] == 'H');
88 if (bs[0] < 'A' || bs[0] > 'Z' || bs[1] < 'A' || bs[1] > 'Z')
94 if (bs + size - 2 >= bs_end)
95 return AVPROBE_SCORE_EXTENSION - 1; // seems to be valid MPC but no header yet
97 if (size < 11 || size > 28)
99 if (!AV_RL32(bs)) //zero CRC is invalid
101 return AVPROBE_SCORE_MAX;
109 static inline int64_t gb_get_v(GetBitContext *gb)
113 while(get_bits1(gb) && bits < 64-7){
115 v |= get_bits(gb, 7);
119 v |= get_bits(gb, 7);
124 static void mpc8_get_chunk_header(AVIOContext *pb, int *tag, int64_t *size)
128 *tag = avio_rl16(pb);
129 *size = ffio_read_varlen(pb);
130 *size -= avio_tell(pb) - pos;
133 static void mpc8_parse_seektable(AVFormatContext *s, int64_t off)
135 MPCContext *c = s->priv_data;
137 int64_t size, pos, ppos[2];
142 if (s->nb_streams == 0) {
143 av_log(s, AV_LOG_ERROR, "No stream added before parsing seek table\n");
147 avio_seek(s->pb, off, SEEK_SET);
148 mpc8_get_chunk_header(s->pb, &tag, &size);
149 if(tag != TAG_SEEKTABLE){
150 av_log(s, AV_LOG_ERROR, "No seek table at given position\n");
153 if (size < 0 || size >= INT_MAX / 2) {
154 av_log(s, AV_LOG_ERROR, "Bad seek table size\n");
157 if(!(buf = av_malloc(size + AV_INPUT_BUFFER_PADDING_SIZE)))
159 avio_read(s->pb, buf, size);
160 init_get_bits(&gb, buf, size * 8);
161 size = gb_get_v(&gb);
162 if(size > UINT_MAX/4 || size > c->samples/1152){
163 av_log(s, AV_LOG_ERROR, "Seek table is too big\n");
166 seekd = get_bits(&gb, 4);
167 for(i = 0; i < 2; i++){
168 pos = gb_get_v(&gb) + c->header_pos;
170 av_add_index_entry(s->streams[0], pos, i, 0, 0, AVINDEX_KEYFRAME);
172 for(; i < size; i++){
173 t = get_unary(&gb, 1, 33) << 12;
174 t += get_bits(&gb, 12);
177 pos = (t >> 1) + ppos[0]*2 - ppos[1];
178 av_add_index_entry(s->streams[0], pos, i << seekd, 0, 0, AVINDEX_KEYFRAME);
185 static void mpc8_handle_chunk(AVFormatContext *s, int tag, int64_t chunk_pos, int64_t size)
187 AVIOContext *pb = s->pb;
192 pos = avio_tell(pb) + size;
193 off = ffio_read_varlen(pb);
194 mpc8_parse_seektable(s, chunk_pos + off);
195 avio_seek(pb, pos, SEEK_SET);
202 static int mpc8_read_header(AVFormatContext *s)
204 MPCContext *c = s->priv_data;
205 AVIOContext *pb = s->pb;
210 c->header_pos = avio_tell(pb);
211 if(avio_rl32(pb) != TAG_MPCK){
212 av_log(s, AV_LOG_ERROR, "Not a Musepack8 file\n");
213 return AVERROR_INVALIDDATA;
216 while(!pb->eof_reached){
218 mpc8_get_chunk_header(pb, &tag, &size);
219 if(tag == TAG_STREAMHDR)
221 mpc8_handle_chunk(s, tag, pos, size);
223 if(tag != TAG_STREAMHDR){
224 av_log(s, AV_LOG_ERROR, "Stream header not found\n");
225 return AVERROR_INVALIDDATA;
228 avio_skip(pb, 4); //CRC
229 c->ver = avio_r8(pb);
231 av_log(s, AV_LOG_ERROR, "Unknown stream version %d\n", c->ver);
232 return AVERROR_PATCHWELCOME;
234 c->samples = ffio_read_varlen(pb);
235 ffio_read_varlen(pb); //silence samples at the beginning
237 st = avformat_new_stream(s, NULL);
239 return AVERROR(ENOMEM);
240 st->codec->codec_type = AVMEDIA_TYPE_AUDIO;
241 st->codec->codec_id = AV_CODEC_ID_MUSEPACK8;
242 st->codec->bits_per_coded_sample = 16;
244 st->codec->extradata_size = 2;
245 st->codec->extradata = av_mallocz(st->codec->extradata_size + AV_INPUT_BUFFER_PADDING_SIZE);
246 avio_read(pb, st->codec->extradata, st->codec->extradata_size);
248 st->codec->channels = (st->codec->extradata[1] >> 4) + 1;
249 st->codec->sample_rate = mpc8_rate[st->codec->extradata[0] >> 5];
250 avpriv_set_pts_info(st, 32, 1152 << (st->codec->extradata[1]&3)*2, st->codec->sample_rate);
252 st->duration = c->samples / (1152 << (st->codec->extradata[1]&3)*2);
253 size -= avio_tell(pb) - pos;
256 int64_t pos = avio_tell(s->pb);
257 c->apetag_start = ff_ape_parse_tag(s);
258 avio_seek(s->pb, pos, SEEK_SET);
264 static int mpc8_read_packet(AVFormatContext *s, AVPacket *pkt)
266 MPCContext *c = s->priv_data;
270 while(!s->pb->eof_reached){
271 pos = avio_tell(s->pb);
273 /* don't return bogus packets with the ape tag data */
274 if (c->apetag_start && pos >= c->apetag_start)
277 mpc8_get_chunk_header(s->pb, &tag, &size);
280 if(tag == TAG_AUDIOPACKET){
281 if(av_get_packet(s->pb, pkt, size) < 0)
282 return AVERROR(ENOMEM);
283 pkt->stream_index = 0;
287 if(tag == TAG_STREAMEND)
289 mpc8_handle_chunk(s, tag, pos, size);
294 static int mpc8_read_seek(AVFormatContext *s, int stream_index, int64_t timestamp, int flags)
296 AVStream *st = s->streams[stream_index];
297 int index = av_index_search_timestamp(st, timestamp, flags);
299 if(index < 0) return -1;
300 if (avio_seek(s->pb, st->index_entries[index].pos, SEEK_SET) < 0)
302 ff_update_cur_dts(s, st, st->index_entries[index].timestamp);
307 AVInputFormat ff_mpc8_demuxer = {
309 .long_name = NULL_IF_CONFIG_SMALL("Musepack SV8"),
310 .priv_data_size = sizeof(MPCContext),
311 .read_probe = mpc8_probe,
312 .read_header = mpc8_read_header,
313 .read_packet = mpc8_read_packet,
314 .read_seek = mpc8_read_seek,