3 * Copyright (c) 2007 Konstantin Shishkov
5 * This file is part of FFmpeg.
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.
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.
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
22 #include "libavcodec/bitstream.h"
23 #include "libavcodec/unary.h"
27 #define MKMPCTAG(a, b) (a | (b << 8))
29 #define TAG_MPCK MKTAG('M','P','C','K')
33 TAG_STREAMHDR
= MKMPCTAG('S','H'),
34 TAG_STREAMEND
= MKMPCTAG('S','E'),
36 TAG_AUDIOPACKET
= MKMPCTAG('A','P'),
38 TAG_SEEKTBLOFF
= MKMPCTAG('S','O'),
39 TAG_SEEKTABLE
= MKMPCTAG('S','T'),
41 TAG_REPLAYGAIN
= MKMPCTAG('R','G'),
42 TAG_ENCINFO
= MKMPCTAG('E','I'),
45 static const int mpc8_rate
[8] = { 44100, 48000, 37800, 32000, -1, -1, -1, -1 };
54 static int mpc8_probe(AVProbeData
*p
)
56 if (AV_RL32(p
->buf
) == TAG_MPCK
)
57 return AVPROBE_SCORE_MAX
;
61 static inline int64_t gb_get_v(GetBitContext
*gb
)
65 while(get_bits1(gb
) && bits
< 64-7){
76 static void mpc8_get_chunk_header(ByteIOContext
*pb
, int *tag
, int64_t *size
)
82 *size
-= url_ftell(pb
) - pos
;
85 static void mpc8_parse_seektable(AVFormatContext
*s
, int64_t off
)
87 MPCContext
*c
= s
->priv_data
;
89 int64_t size
, pos
, ppos
[2];
94 url_fseek(s
->pb
, off
, SEEK_SET
);
95 mpc8_get_chunk_header(s
->pb
, &tag
, &size
);
96 if(tag
!= TAG_SEEKTABLE
){
97 av_log(s
, AV_LOG_ERROR
, "No seek table at given position\n");
100 if(!(buf
= av_malloc(size
)))
102 get_buffer(s
->pb
, buf
, size
);
103 init_get_bits(&gb
, buf
, size
* 8);
104 size
= gb_get_v(&gb
);
105 if(size
> UINT_MAX
/4 || size
> c
->samples
/1152){
106 av_log(s
, AV_LOG_ERROR
, "Seek table is too big\n");
109 seekd
= get_bits(&gb
, 4);
110 for(i
= 0; i
< 2; i
++){
111 pos
= gb_get_v(&gb
) + c
->header_pos
;
113 av_add_index_entry(s
->streams
[0], pos
, i
, 0, 0, AVINDEX_KEYFRAME
);
115 for(; i
< size
; i
++){
116 t
= get_unary(&gb
, 1, 33) << 12;
117 t
+= get_bits(&gb
, 12);
120 pos
= (t
>> 1) + ppos
[0]*2 - ppos
[1];
121 av_add_index_entry(s
->streams
[0], pos
, i
<< seekd
, 0, 0, AVINDEX_KEYFRAME
);
128 static void mpc8_handle_chunk(AVFormatContext
*s
, int tag
, int64_t chunk_pos
, int64_t size
)
130 ByteIOContext
*pb
= s
->pb
;
135 pos
= url_ftell(pb
) + size
;
137 mpc8_parse_seektable(s
, chunk_pos
+ off
);
138 url_fseek(pb
, pos
, SEEK_SET
);
145 static int mpc8_read_header(AVFormatContext
*s
, AVFormatParameters
*ap
)
147 MPCContext
*c
= s
->priv_data
;
148 ByteIOContext
*pb
= s
->pb
;
153 c
->header_pos
= url_ftell(pb
);
154 if(get_le32(pb
) != TAG_MPCK
){
155 av_log(s
, AV_LOG_ERROR
, "Not a Musepack8 file\n");
159 while(!url_feof(pb
)){
161 mpc8_get_chunk_header(pb
, &tag
, &size
);
162 if(tag
== TAG_STREAMHDR
)
164 mpc8_handle_chunk(s
, tag
, pos
, size
);
166 if(tag
!= TAG_STREAMHDR
){
167 av_log(s
, AV_LOG_ERROR
, "Stream header not found\n");
171 url_fskip(pb
, 4); //CRC
172 c
->ver
= get_byte(pb
);
174 av_log(s
, AV_LOG_ERROR
, "Unknown stream version %d\n", c
->ver
);
177 c
->samples
= ff_get_v(pb
);
178 ff_get_v(pb
); //silence samples at the beginning
180 st
= av_new_stream(s
, 0);
182 return AVERROR(ENOMEM
);
183 st
->codec
->codec_type
= CODEC_TYPE_AUDIO
;
184 st
->codec
->codec_id
= CODEC_ID_MUSEPACK8
;
185 st
->codec
->bits_per_sample
= 16;
187 st
->codec
->extradata_size
= 2;
188 st
->codec
->extradata
= av_mallocz(st
->codec
->extradata_size
+ FF_INPUT_BUFFER_PADDING_SIZE
);
189 get_buffer(pb
, st
->codec
->extradata
, st
->codec
->extradata_size
);
191 st
->codec
->channels
= (st
->codec
->extradata
[1] >> 4) + 1;
192 st
->codec
->sample_rate
= mpc8_rate
[st
->codec
->extradata
[0] >> 5];
193 av_set_pts_info(st
, 32, 1152 << (st
->codec
->extradata
[1]&3)*2, st
->codec
->sample_rate
);
194 st
->duration
= c
->samples
/ (1152 << (st
->codec
->extradata
[1]&3)*2);
195 size
-= url_ftell(pb
) - pos
;
200 static int mpc8_read_packet(AVFormatContext
*s
, AVPacket
*pkt
)
202 MPCContext
*c
= s
->priv_data
;
206 while(!url_feof(s
->pb
)){
207 pos
= url_ftell(s
->pb
);
208 mpc8_get_chunk_header(s
->pb
, &tag
, &size
);
209 if(tag
== TAG_AUDIOPACKET
){
210 if(av_get_packet(s
->pb
, pkt
, size
) < 0)
211 return AVERROR(ENOMEM
);
212 pkt
->stream_index
= 0;
216 if(tag
== TAG_STREAMEND
)
218 mpc8_handle_chunk(s
, tag
, pos
, size
);
223 static int mpc8_read_seek(AVFormatContext
*s
, int stream_index
, int64_t timestamp
, int flags
)
225 AVStream
*st
= s
->streams
[stream_index
];
226 MPCContext
*c
= s
->priv_data
;
227 int index
= av_index_search_timestamp(st
, timestamp
, flags
);
229 if(index
< 0) return -1;
230 url_fseek(s
->pb
, st
->index_entries
[index
].pos
, SEEK_SET
);
231 c
->frame
= st
->index_entries
[index
].timestamp
;
236 AVInputFormat mpc8_demuxer
= {
238 NULL_IF_CONFIG_SMALL("Musepack SV8"),