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"
26 #include "avio_internal.h"
29 #define MKMPCTAG(a, b) (a | (b << 8))
31 #define TAG_MPCK MKTAG('M','P','C','K')
35 TAG_STREAMHDR = MKMPCTAG('S','H'),
36 TAG_STREAMEND = MKMPCTAG('S','E'),
38 TAG_AUDIOPACKET = MKMPCTAG('A','P'),
40 TAG_SEEKTBLOFF = MKMPCTAG('S','O'),
41 TAG_SEEKTABLE = MKMPCTAG('S','T'),
43 TAG_REPLAYGAIN = MKMPCTAG('R','G'),
44 TAG_ENCINFO = MKMPCTAG('E','I'),
47 static const int mpc8_rate[8] = { 44100, 48000, 37800, 32000, -1, -1, -1, -1 };
56 static inline int64_t bs_get_v(uint8_t **bs)
74 static int mpc8_probe(AVProbeData *p)
76 uint8_t *bs = p->buf + 4;
77 uint8_t *bs_end = bs + p->buf_size;
82 if (AV_RL32(p->buf) != TAG_MPCK)
84 while (bs < bs_end + 3) {
85 int header_found = (bs[0] == 'S' && bs[1] == 'H');
86 if (bs[0] < 'A' || bs[0] > 'Z' || bs[1] < 'A' || bs[1] > 'Z')
92 if (bs + size - 2 >= bs_end)
93 return AVPROBE_SCORE_MAX / 4 - 1; //seems to be valid MPC but no header yet
95 if (size < 11 || size > 28)
97 if (!AV_RL32(bs)) //zero CRC is invalid
99 return AVPROBE_SCORE_MAX;
107 static inline int64_t gb_get_v(GetBitContext *gb)
111 while(get_bits1(gb) && bits < 64-7){
113 v |= get_bits(gb, 7);
117 v |= get_bits(gb, 7);
122 static void mpc8_get_chunk_header(AVIOContext *pb, int *tag, int64_t *size)
126 *tag = avio_rl16(pb);
127 *size = ffio_read_varlen(pb);
128 *size -= avio_tell(pb) - pos;
131 static void mpc8_parse_seektable(AVFormatContext *s, int64_t off)
133 MPCContext *c = s->priv_data;
135 int64_t size, pos, ppos[2];
140 avio_seek(s->pb, off, SEEK_SET);
141 mpc8_get_chunk_header(s->pb, &tag, &size);
142 if(tag != TAG_SEEKTABLE){
143 av_log(s, AV_LOG_ERROR, "No seek table at given position\n");
146 if(!(buf = av_malloc(size + FF_INPUT_BUFFER_PADDING_SIZE)))
148 avio_read(s->pb, buf, size);
149 init_get_bits(&gb, buf, size * 8);
150 size = gb_get_v(&gb);
151 if(size > UINT_MAX/4 || size > c->samples/1152){
152 av_log(s, AV_LOG_ERROR, "Seek table is too big\n");
155 seekd = get_bits(&gb, 4);
156 for(i = 0; i < 2; i++){
157 pos = gb_get_v(&gb) + c->header_pos;
159 av_add_index_entry(s->streams[0], pos, i, 0, 0, AVINDEX_KEYFRAME);
161 for(; i < size; i++){
162 t = get_unary(&gb, 1, 33) << 12;
163 t += get_bits(&gb, 12);
166 pos = (t >> 1) + ppos[0]*2 - ppos[1];
167 av_add_index_entry(s->streams[0], pos, i << seekd, 0, 0, AVINDEX_KEYFRAME);
174 static void mpc8_handle_chunk(AVFormatContext *s, int tag, int64_t chunk_pos, int64_t size)
176 AVIOContext *pb = s->pb;
181 pos = avio_tell(pb) + size;
182 off = ffio_read_varlen(pb);
183 mpc8_parse_seektable(s, chunk_pos + off);
184 avio_seek(pb, pos, SEEK_SET);
191 static int mpc8_read_header(AVFormatContext *s)
193 MPCContext *c = s->priv_data;
194 AVIOContext *pb = s->pb;
199 c->header_pos = avio_tell(pb);
200 if(avio_rl32(pb) != TAG_MPCK){
201 av_log(s, AV_LOG_ERROR, "Not a Musepack8 file\n");
205 while(!pb->eof_reached){
207 mpc8_get_chunk_header(pb, &tag, &size);
208 if(tag == TAG_STREAMHDR)
210 mpc8_handle_chunk(s, tag, pos, size);
212 if(tag != TAG_STREAMHDR){
213 av_log(s, AV_LOG_ERROR, "Stream header not found\n");
217 avio_skip(pb, 4); //CRC
218 c->ver = avio_r8(pb);
220 av_log(s, AV_LOG_ERROR, "Unknown stream version %d\n", c->ver);
223 c->samples = ffio_read_varlen(pb);
224 ffio_read_varlen(pb); //silence samples at the beginning
226 st = avformat_new_stream(s, NULL);
228 return AVERROR(ENOMEM);
229 st->codec->codec_type = AVMEDIA_TYPE_AUDIO;
230 st->codec->codec_id = CODEC_ID_MUSEPACK8;
231 st->codec->bits_per_coded_sample = 16;
233 st->codec->extradata_size = 2;
234 st->codec->extradata = av_mallocz(st->codec->extradata_size + FF_INPUT_BUFFER_PADDING_SIZE);
235 avio_read(pb, st->codec->extradata, st->codec->extradata_size);
237 st->codec->channels = (st->codec->extradata[1] >> 4) + 1;
238 st->codec->sample_rate = mpc8_rate[st->codec->extradata[0] >> 5];
239 avpriv_set_pts_info(st, 32, 1152 << (st->codec->extradata[1]&3)*2, st->codec->sample_rate);
240 st->duration = c->samples / (1152 << (st->codec->extradata[1]&3)*2);
241 size -= avio_tell(pb) - pos;
246 static int mpc8_read_packet(AVFormatContext *s, AVPacket *pkt)
248 MPCContext *c = s->priv_data;
252 while(!s->pb->eof_reached){
253 pos = avio_tell(s->pb);
254 mpc8_get_chunk_header(s->pb, &tag, &size);
257 if(tag == TAG_AUDIOPACKET){
258 if(av_get_packet(s->pb, pkt, size) < 0)
259 return AVERROR(ENOMEM);
260 pkt->stream_index = 0;
264 if(tag == TAG_STREAMEND)
266 mpc8_handle_chunk(s, tag, pos, size);
271 static int mpc8_read_seek(AVFormatContext *s, int stream_index, int64_t timestamp, int flags)
273 AVStream *st = s->streams[stream_index];
274 MPCContext *c = s->priv_data;
275 int index = av_index_search_timestamp(st, timestamp, flags);
277 if(index < 0) return -1;
278 if (avio_seek(s->pb, st->index_entries[index].pos, SEEK_SET) < 0)
280 c->frame = st->index_entries[index].timestamp;
285 AVInputFormat ff_mpc8_demuxer = {
287 .long_name = NULL_IF_CONFIG_SMALL("Musepack SV8"),
288 .priv_data_size = sizeof(MPCContext),
289 .read_probe = mpc8_probe,
290 .read_header = mpc8_read_header,
291 .read_packet = mpc8_read_packet,
292 .read_seek = mpc8_read_seek,