FFmpeg
Loading...
Searching...
No Matches
mpc.c
Go to the documentation of this file.
1/*
2 * Musepack demuxer
3 * Copyright (c) 2006 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
23#include "libavutil/mem.h"
24
25#include "avformat.h"
26#include "demux.h"
27#include "internal.h"
28#include "apetag.h"
29#include "id3v1.h"
30#include "libavutil/dict.h"
31
32#define MPC_FRAMESIZE 1152
33#define DELAY_FRAMES 32
34
35static const int mpc_rate[4] = { 44100, 48000, 37800, 32000 };
36typedef struct MPCFrame {
38 int size, skip;
40
41typedef struct MPCContext {
42 int ver;
44 uint32_t fcount;
49
50static int mpc_probe(const AVProbeData *p)
51{
52 const uint8_t *d = p->buf;
53 if (d[0] == 'M' && d[1] == 'P' && d[2] == '+' && (d[3] == 0x17 || d[3] == 0x7))
54 return AVPROBE_SCORE_MAX;
55 return 0;
56}
57
59{
60 MPCContext *c = s->priv_data;
61 AVStream *st;
62 int ret;
63
64 if(avio_rl24(s->pb) != MKTAG('M', 'P', '+', 0)){
65 av_log(s, AV_LOG_ERROR, "Not a Musepack file\n");
67 }
68 c->ver = avio_r8(s->pb);
69 if(c->ver != 0x07 && c->ver != 0x17){
70 av_log(s, AV_LOG_ERROR, "Can demux Musepack SV7, got version %02X\n", c->ver);
72 }
73 c->fcount = avio_rl32(s->pb);
74 if((int64_t)c->fcount * sizeof(MPCFrame) >= UINT_MAX){
75 av_log(s, AV_LOG_ERROR, "Too many frames, seeking is not possible\n");
77 }
78 c->curframe = 0;
79 c->lastframe = -1;
80 c->curbits = 8;
81 c->frames_noted = 0;
82
84 if (!st)
85 return AVERROR(ENOMEM);
86
87 if (c->fcount) {
88 c->frames = av_malloc(c->fcount * sizeof(MPCFrame));
89 if (!c->frames) {
90 av_log(s, AV_LOG_ERROR, "Cannot allocate seektable\n");
91 return AVERROR(ENOMEM);
92 }
93 st->priv_data = c->frames;
94 } else {
95 av_log(s, AV_LOG_WARNING, "Container reports no frames\n");
96 }
97
102
103 if ((ret = ff_get_extradata(s, st->codecpar, s->pb, 16)) < 0)
104 return ret;
105 st->codecpar->sample_rate = mpc_rate[st->codecpar->extradata[2] & 3];
107 /* scan for seekpoints */
108 st->start_time = 0;
109 st->duration = c->fcount;
110
111 /* try to read APE tags */
112 if (s->pb->seekable & AVIO_SEEKABLE_NORMAL) {
113 int64_t pos = avio_tell(s->pb);
115 if (av_dict_count(s->metadata) == 0)
117 avio_seek(s->pb, pos, SEEK_SET);
118 }
119
120 return 0;
121}
122
124{
125 MPCContext *c = s->priv_data;
126 int ret, size, size2, curbits, cur = c->curframe;
127 unsigned tmp;
128 int64_t pos;
129
130 if (c->curframe >= c->fcount && c->fcount)
131 return AVERROR_EOF;
132
133 if(c->curframe != c->lastframe + 1){
134 avio_seek(s->pb, c->frames[c->curframe].pos, SEEK_SET);
135 c->curbits = c->frames[c->curframe].skip;
136 }
137 c->lastframe = c->curframe;
138 c->curframe++;
139 curbits = c->curbits;
140 pos = avio_tell(s->pb);
141 tmp = avio_rl32(s->pb);
142 if(curbits <= 12){
143 size2 = (tmp >> (12 - curbits)) & 0xFFFFF;
144 }else{
145 size2 = (tmp << (curbits - 12) | avio_rl32(s->pb) >> (44 - curbits)) & 0xFFFFF;
146 }
147 curbits += 20;
148 avio_seek(s->pb, pos, SEEK_SET);
149
150 size = ((size2 + curbits + 31) & ~31) >> 3;
151 if(cur == c->frames_noted && c->fcount){
152 c->frames[cur].pos = pos;
153 c->frames[cur].size = size;
154 c->frames[cur].skip = curbits - 20;
155 av_add_index_entry(s->streams[0], cur, cur, size, 0, AVINDEX_KEYFRAME);
156 c->frames_noted++;
157 }
158 c->curbits = (curbits + size2) & 0x1F;
159
160 if ((ret = av_new_packet(pkt, size + 4)) < 0)
161 return ret;
162
163 pkt->data[0] = curbits;
164 pkt->data[1] = (c->curframe > c->fcount) && c->fcount;
165 pkt->data[2] = 0;
166 pkt->data[3] = 0;
167
168 pkt->stream_index = 0;
169 pkt->pts = cur;
170 ret = avio_read(s->pb, pkt->data + 4, size);
171 if(c->curbits)
172 avio_seek(s->pb, -4, SEEK_CUR);
173 if(ret < size){
174 return ret < 0 ? ret : AVERROR_INVALIDDATA;
175 }
176 pkt->size = ret + 4;
177
178 return 0;
179}
180
181/**
182 * Seek to the given position
183 * If position is unknown but is within the limits of file
184 * then packets are skipped unless desired position is reached
185 *
186 * Also this function makes use of the fact that timestamp == frameno
187 */
188static int mpc_read_seek(AVFormatContext *s, int stream_index, int64_t timestamp, int flags)
189{
190 AVStream *st = s->streams[stream_index];
191 FFStream *const sti = ffstream(st);
192 MPCContext *c = s->priv_data;
193 AVPacket pkt1, *pkt = &pkt1;
194 int ret;
195 int index = av_index_search_timestamp(st, FFMAX(timestamp - DELAY_FRAMES, 0), flags);
196 uint32_t lastframe;
197
198 /* if found, seek there */
199 if (index >= 0 && sti->index_entries[sti->nb_index_entries-1].timestamp >= timestamp - DELAY_FRAMES) {
200 c->curframe = sti->index_entries[index].pos;
201 return 0;
202 }
203 /* if timestamp is out of bounds, return error */
204 if(timestamp < 0 || timestamp >= c->fcount)
205 return -1;
206 timestamp -= DELAY_FRAMES;
207 /* seek to the furthest known position and read packets until
208 we reach desired position */
209 lastframe = c->curframe;
210 if(c->frames_noted) c->curframe = c->frames_noted - 1;
211 while(c->curframe < timestamp){
212 ret = av_read_frame(s, pkt);
213 if (ret < 0){
214 c->curframe = lastframe;
215 return ret;
216 }
218 }
219 return 0;
220}
221
222
224 .p.name = "mpc",
225 .p.long_name = NULL_IF_CONFIG_SMALL("Musepack"),
226 .p.extensions = "mpc",
227 .priv_data_size = sizeof(MPCContext),
232};
const FFInputFormat ff_mpc_demuxer
Definition mpc.c:223
int64_t ff_ape_parse_tag(AVFormatContext *s)
Read and parse an APE tag.
Definition apetag.c:110
void avpriv_set_pts_info(AVStream *st, int pts_wrap_bits, unsigned int pts_num, unsigned int pts_den)
Set the time base and wrapping info for a given stream.
Definition avformat.c:834
Main libavformat public API header.
#define AVINDEX_KEYFRAME
Definition avformat.h:628
#define AVPROBE_SCORE_MAX
maximum score
Definition avformat.h:483
int64_t avio_seek(AVIOContext *s, int64_t offset, int whence)
fseek() equivalent for AVIOContext.
Definition aviobuf.c:236
#define AVIO_SEEKABLE_NORMAL
Seeking works like for a local file.
Definition avio.h:41
static av_always_inline int64_t avio_tell(AVIOContext *s)
ftell() equivalent for AVIOContext.
Definition avio.h:494
int avio_read(AVIOContext *s, unsigned char *buf, int size)
Read size bytes from AVIOContext into buf.
Definition aviobuf.c:615
unsigned int avio_rl32(AVIOContext *s)
Definition aviobuf.c:733
unsigned int avio_rl24(AVIOContext *s)
Definition aviobuf.c:725
int avio_r8(AVIOContext *s)
Definition aviobuf.c:606
static int read_packet(void *opaque, uint8_t *buf, int buf_size)
#define flags(name, subs,...)
Definition cbs_h264.c:74
#define s(width, name)
Definition cbs_vp9.c:198
static int read_probe(const AVProbeData *p)
Definition cdg.c:30
Public libavutil channel layout APIs header.
#define NULL
Definition coverity.c:32
long long int64_t
Definition coverity.c:34
int ff_get_extradata(void *logctx, AVCodecParameters *par, AVIOContext *pb, int size)
Allocate extradata with additional AV_INPUT_BUFFER_PADDING_SIZE at end which is always set to 0 and f...
static AVPacket * pkt
Public dictionary API.
static int read_header(FFV1Context *f, RangeCoder *c)
Definition ffv1dec.c:578
@ AV_CODEC_ID_MUSEPACK7
Definition codec_id.h:481
void av_packet_unref(AVPacket *pkt)
Wipe the packet.
Definition packet.c:434
int av_new_packet(AVPacket *pkt, int size)
Allocate the payload of a packet and initialize its fields with default values.
Definition packet.c:98
AVStream * avformat_new_stream(AVFormatContext *s, const struct AVCodec *c)
Add a new stream to a media file.
int av_read_frame(AVFormatContext *s, AVPacket *pkt)
Return the next frame of a stream.
Definition demux.c:1588
int av_add_index_entry(AVStream *st, int64_t pos, int64_t timestamp, int size, int distance, int flags)
Add an index entry into a sorted list.
Definition seek.c:122
int av_index_search_timestamp(AVStream *st, int64_t timestamp, int flags)
Get the index for a specific timestamp.
Definition seek.c:245
#define AV_CHANNEL_LAYOUT_STEREO
int av_dict_count(const AVDictionary *m)
Get number of entries in dictionary.
Definition dict.c:37
#define AVERROR_INVALIDDATA
Invalid data found when processing input.
Definition error.h:61
#define AVERROR_EOF
End of file.
Definition error.h:57
#define AVERROR(e)
Definition error.h:45
#define AV_LOG_WARNING
Something somehow does not look correct.
Definition log.h:216
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
Definition log.h:210
@ AVMEDIA_TYPE_AUDIO
Definition avutil.h:201
int index
Definition gxfenc.c:90
void ff_id3v1_read(AVFormatContext *s)
Read an ID3v1 tag.
Definition id3v1.c:278
static av_always_inline FFStream * ffstream(AVStream *st)
Definition internal.h:365
static int mpc_probe(const AVProbeData *p)
Definition mpc.c:50
#define MPC_FRAMESIZE
Definition mpc.c:32
static int mpc_read_header(AVFormatContext *s)
Definition mpc.c:58
static int mpc_read_seek(AVFormatContext *s, int stream_index, int64_t timestamp, int flags)
Seek to the given position If position is unknown but is within the limits of file then packets are s...
Definition mpc.c:188
static int mpc_read_packet(AVFormatContext *s, AVPacket *pkt)
Definition mpc.c:123
#define DELAY_FRAMES
Definition mpc.c:33
static const int mpc_rate[4]
Definition mpc.c:35
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification.
Definition internal.h:88
static int read_seek(AVFormatContext *ctx, int stream_index, int64_t timestamp, int flags)
Definition libcdio.c:151
#define MKTAG(a, b, c, d)
Definition macros.h:55
#define FFMAX(a, b)
Definition macros.h:47
Memory handling functions.
#define av_malloc(s)
Definition ops_static.c:52
unsigned int pos
Definition spdifenc.c:431
An AVChannelLayout holds information about the channel layout of audio data.
int bits_per_coded_sample
The number of bits per sample in the codedwords.
Definition codec_par.h:113
AVChannelLayout ch_layout
The channel layout and number of channels.
Definition codec_par.h:207
enum AVMediaType codec_type
General type of the encoded data.
Definition codec_par.h:53
uint8_t * extradata
Extra binary data needed for initializing the decoder, codec-dependent.
Definition codec_par.h:71
enum AVCodecID codec_id
Specific type of the encoded data (the codec used).
Definition codec_par.h:57
int sample_rate
The number of audio samples per second.
Definition codec_par.h:213
Format I/O context.
Definition avformat.h:1333
int64_t pos
Definition avformat.h:621
int64_t timestamp
Timestamp in AVStream.time_base units, preferably the time from which on correctly decoded frames are...
Definition avformat.h:622
This structure stores compressed data.
Definition packet.h:580
This structure contains the data a format has to probe a file.
Definition avformat.h:471
Stream structure.
Definition avformat.h:766
AVCodecParameters * codecpar
Codec parameters associated with this stream.
Definition avformat.h:789
int64_t duration
Decoding: duration of the stream, in stream time base.
Definition avformat.h:825
void * priv_data
Definition avformat.h:791
int64_t start_time
Decoding: pts of the first frame of the stream in presentation order, in stream time base.
Definition avformat.h:815
int nb_index_entries
Definition internal.h:193
AVIndexEntry * index_entries
Only used if the format does not support seeking natively.
Definition internal.h:191
uint32_t curframe
Definition mpc.c:43
int curbits
Definition mpc.c:46
uint32_t fcount
Definition mpc.c:44
int frames_noted
Definition mpc.c:47
int ver
Definition mpc.c:42
int frames
Definition mpc.h:64
uint32_t lastframe
Definition mpc.c:43
Definition mpc.c:36
int size
Definition mpc.c:38
int skip
Definition mpc.c:38
int64_t pos
Definition mpc.c:37
#define av_log(a,...)
static uint8_t tmp[40]
Definition aes_ctr.c:52
int size
static double c[64]