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