]> git.sesse.net Git - ffmpeg/blob - libavformat/mpc8.c
Merge remote-tracking branch 'qatar/master'
[ffmpeg] / libavformat / mpc8.c
1 /*
2  * Musepack SV8 demuxer
3  * Copyright (c) 2007 Konstantin Shishkov
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/get_bits.h"
23 #include "libavcodec/unary.h"
24 #include "apetag.h"
25 #include "avformat.h"
26 #include "internal.h"
27 #include "avio_internal.h"
28
29 /// Two-byte MPC tag
30 #define MKMPCTAG(a, b) (a | (b << 8))
31
32 #define TAG_MPCK MKTAG('M','P','C','K')
33
34 /// Reserved MPC tags
35 enum MPCPacketTags{
36     TAG_STREAMHDR   = MKMPCTAG('S','H'),
37     TAG_STREAMEND   = MKMPCTAG('S','E'),
38
39     TAG_AUDIOPACKET = MKMPCTAG('A','P'),
40
41     TAG_SEEKTBLOFF  = MKMPCTAG('S','O'),
42     TAG_SEEKTABLE   = MKMPCTAG('S','T'),
43
44     TAG_REPLAYGAIN  = MKMPCTAG('R','G'),
45     TAG_ENCINFO     = MKMPCTAG('E','I'),
46 };
47
48 static const int mpc8_rate[8] = { 44100, 48000, 37800, 32000, -1, -1, -1, -1 };
49
50 typedef struct {
51     int ver;
52     int frame;
53     int64_t header_pos;
54     int64_t samples;
55
56     int64_t apetag_start;
57 } MPCContext;
58
59 static inline int64_t bs_get_v(uint8_t **bs)
60 {
61     int64_t v = 0;
62     int br = 0;
63     int c;
64
65     do {
66         c = **bs; (*bs)++;
67         v <<= 7;
68         v |= c & 0x7F;
69         br++;
70         if (br > 10)
71             return -1;
72     } while (c & 0x80);
73
74     return v - br;
75 }
76
77 static int mpc8_probe(AVProbeData *p)
78 {
79     uint8_t *bs = p->buf + 4;
80     uint8_t *bs_end = bs + p->buf_size;
81     int64_t size;
82
83     if (p->buf_size < 16)
84         return 0;
85     if (AV_RL32(p->buf) != TAG_MPCK)
86         return 0;
87     while (bs < bs_end + 3) {
88         int header_found = (bs[0] == 'S' && bs[1] == 'H');
89         if (bs[0] < 'A' || bs[0] > 'Z' || bs[1] < 'A' || bs[1] > 'Z')
90             return 0;
91         bs += 2;
92         size = bs_get_v(&bs);
93         if (size < 2)
94             return 0;
95         if (bs + size - 2 >= bs_end)
96             return AVPROBE_SCORE_MAX / 4 - 1; //seems to be valid MPC but no header yet
97         if (header_found) {
98             if (size < 11 || size > 28)
99                 return 0;
100             if (!AV_RL32(bs)) //zero CRC is invalid
101                 return 0;
102             return AVPROBE_SCORE_MAX;
103         } else {
104             bs += size - 2;
105         }
106     }
107     return 0;
108 }
109
110 static inline int64_t gb_get_v(GetBitContext *gb)
111 {
112     int64_t v = 0;
113     int bits = 0;
114     while(get_bits1(gb) && bits < 64-7){
115         v <<= 7;
116         v |= get_bits(gb, 7);
117         bits += 7;
118     }
119     v <<= 7;
120     v |= get_bits(gb, 7);
121
122     return v;
123 }
124
125 static void mpc8_get_chunk_header(AVIOContext *pb, int *tag, int64_t *size)
126 {
127     int64_t pos;
128     pos = avio_tell(pb);
129     *tag = avio_rl16(pb);
130     *size = ffio_read_varlen(pb);
131     *size -= avio_tell(pb) - pos;
132 }
133
134 static void mpc8_parse_seektable(AVFormatContext *s, int64_t off)
135 {
136     MPCContext *c = s->priv_data;
137     int tag;
138     int64_t size, pos, ppos[2];
139     uint8_t *buf;
140     int i, t, seekd;
141     GetBitContext gb;
142
143     avio_seek(s->pb, off, SEEK_SET);
144     mpc8_get_chunk_header(s->pb, &tag, &size);
145     if(tag != TAG_SEEKTABLE){
146         av_log(s, AV_LOG_ERROR, "No seek table at given position\n");
147         return;
148     }
149     if(!(buf = av_malloc(size + FF_INPUT_BUFFER_PADDING_SIZE)))
150         return;
151     avio_read(s->pb, buf, size);
152     init_get_bits(&gb, buf, size * 8);
153     size = gb_get_v(&gb);
154     if(size > UINT_MAX/4 || size > c->samples/1152){
155         av_log(s, AV_LOG_ERROR, "Seek table is too big\n");
156         return;
157     }
158     seekd = get_bits(&gb, 4);
159     for(i = 0; i < 2; i++){
160         pos = gb_get_v(&gb) + c->header_pos;
161         ppos[1 - i] = pos;
162         av_add_index_entry(s->streams[0], pos, i, 0, 0, AVINDEX_KEYFRAME);
163     }
164     for(; i < size; i++){
165         t = get_unary(&gb, 1, 33) << 12;
166         t += get_bits(&gb, 12);
167         if(t & 1)
168             t = -(t & ~1);
169         pos = (t >> 1) + ppos[0]*2 - ppos[1];
170         av_add_index_entry(s->streams[0], pos, i << seekd, 0, 0, AVINDEX_KEYFRAME);
171         ppos[1] = ppos[0];
172         ppos[0] = pos;
173     }
174     av_free(buf);
175 }
176
177 static void mpc8_handle_chunk(AVFormatContext *s, int tag, int64_t chunk_pos, int64_t size)
178 {
179     AVIOContext *pb = s->pb;
180     int64_t pos, off;
181
182     switch(tag){
183     case TAG_SEEKTBLOFF:
184         pos = avio_tell(pb) + size;
185         off = ffio_read_varlen(pb);
186         mpc8_parse_seektable(s, chunk_pos + off);
187         avio_seek(pb, pos, SEEK_SET);
188         break;
189     default:
190         avio_skip(pb, size);
191     }
192 }
193
194 static int mpc8_read_header(AVFormatContext *s)
195 {
196     MPCContext *c = s->priv_data;
197     AVIOContext *pb = s->pb;
198     AVStream *st;
199     int tag = 0;
200     int64_t size, pos;
201
202     c->header_pos = avio_tell(pb);
203     if(avio_rl32(pb) != TAG_MPCK){
204         av_log(s, AV_LOG_ERROR, "Not a Musepack8 file\n");
205         return AVERROR_INVALIDDATA;
206     }
207
208     while(!url_feof(pb)){
209         pos = avio_tell(pb);
210         mpc8_get_chunk_header(pb, &tag, &size);
211         if(tag == TAG_STREAMHDR)
212             break;
213         mpc8_handle_chunk(s, tag, pos, size);
214     }
215     if(tag != TAG_STREAMHDR){
216         av_log(s, AV_LOG_ERROR, "Stream header not found\n");
217         return AVERROR_INVALIDDATA;
218     }
219     pos = avio_tell(pb);
220     avio_skip(pb, 4); //CRC
221     c->ver = avio_r8(pb);
222     if(c->ver != 8){
223         av_log(s, AV_LOG_ERROR, "Unknown stream version %d\n", c->ver);
224         return AVERROR_PATCHWELCOME;
225     }
226     c->samples = ffio_read_varlen(pb);
227     ffio_read_varlen(pb); //silence samples at the beginning
228
229     st = avformat_new_stream(s, NULL);
230     if (!st)
231         return AVERROR(ENOMEM);
232     st->codec->codec_type = AVMEDIA_TYPE_AUDIO;
233     st->codec->codec_id = CODEC_ID_MUSEPACK8;
234     st->codec->bits_per_coded_sample = 16;
235
236     st->codec->extradata_size = 2;
237     st->codec->extradata = av_mallocz(st->codec->extradata_size + FF_INPUT_BUFFER_PADDING_SIZE);
238     avio_read(pb, st->codec->extradata, st->codec->extradata_size);
239
240     st->codec->channels = (st->codec->extradata[1] >> 4) + 1;
241     st->codec->sample_rate = mpc8_rate[st->codec->extradata[0] >> 5];
242     avpriv_set_pts_info(st, 32, 1152  << (st->codec->extradata[1]&3)*2, st->codec->sample_rate);
243     st->duration = c->samples / (1152 << (st->codec->extradata[1]&3)*2);
244     size -= avio_tell(pb) - pos;
245     if (size > 0)
246         avio_skip(pb, size);
247
248     if (pb->seekable) {
249         int64_t pos = avio_tell(s->pb);
250         c->apetag_start = ff_ape_parse_tag(s);
251         avio_seek(s->pb, pos, SEEK_SET);
252     }
253
254     return 0;
255 }
256
257 static int mpc8_read_packet(AVFormatContext *s, AVPacket *pkt)
258 {
259     MPCContext *c = s->priv_data;
260     int tag;
261     int64_t pos, size;
262
263     while(!url_feof(s->pb)){
264         pos = avio_tell(s->pb);
265
266         /* don't return bogus packets with the ape tag data */
267         if (c->apetag_start && pos >= c->apetag_start)
268             return AVERROR_EOF;
269
270         mpc8_get_chunk_header(s->pb, &tag, &size);
271         if (size < 0)
272             return -1;
273         if(tag == TAG_AUDIOPACKET){
274             if(av_get_packet(s->pb, pkt, size) < 0)
275                 return AVERROR(ENOMEM);
276             pkt->stream_index = 0;
277             pkt->pts = c->frame;
278             return 0;
279         }
280         if(tag == TAG_STREAMEND)
281             return AVERROR(EIO);
282         mpc8_handle_chunk(s, tag, pos, size);
283     }
284     return AVERROR_EOF;
285 }
286
287 static int mpc8_read_seek(AVFormatContext *s, int stream_index, int64_t timestamp, int flags)
288 {
289     AVStream *st = s->streams[stream_index];
290     MPCContext *c = s->priv_data;
291     int index = av_index_search_timestamp(st, timestamp, flags);
292
293     if(index < 0) return -1;
294     if (avio_seek(s->pb, st->index_entries[index].pos, SEEK_SET) < 0)
295         return -1;
296     c->frame = st->index_entries[index].timestamp;
297     return 0;
298 }
299
300
301 AVInputFormat ff_mpc8_demuxer = {
302     .name           = "mpc8",
303     .long_name      = NULL_IF_CONFIG_SMALL("Musepack SV8"),
304     .priv_data_size = sizeof(MPCContext),
305     .read_probe     = mpc8_probe,
306     .read_header    = mpc8_read_header,
307     .read_packet    = mpc8_read_packet,
308     .read_seek      = mpc8_read_seek,
309 };