2006-09-26 03:41:51 +00:00
|
|
|
/*
|
|
|
|
* WavPack demuxer
|
2011-01-22 13:43:15 +00:00
|
|
|
* Copyright (c) 2006,2011 Konstantin Shishkov
|
2006-09-26 03:41:51 +00:00
|
|
|
*
|
2006-10-07 15:30:46 +00:00
|
|
|
* This file is part of FFmpeg.
|
|
|
|
*
|
|
|
|
* FFmpeg is free software; you can redistribute it and/or
|
2006-09-26 03:41:51 +00:00
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
2006-10-07 15:30:46 +00:00
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
2006-09-26 03:41:51 +00:00
|
|
|
*
|
2006-10-07 15:30:46 +00:00
|
|
|
* FFmpeg is distributed in the hope that it will be useful,
|
2006-09-26 03:41:51 +00:00
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
2006-10-07 15:30:46 +00:00
|
|
|
* License along with FFmpeg; if not, write to the Free Software
|
2006-09-26 03:41:51 +00:00
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
*/
|
|
|
|
|
2012-11-10 15:00:00 +00:00
|
|
|
#include "libavutil/channel_layout.h"
|
2009-01-11 22:19:48 +00:00
|
|
|
#include "libavutil/intreadwrite.h"
|
2011-05-22 10:46:29 +00:00
|
|
|
#include "libavutil/dict.h"
|
2006-09-26 03:41:51 +00:00
|
|
|
#include "avformat.h"
|
2011-11-29 18:28:15 +00:00
|
|
|
#include "internal.h"
|
2009-10-18 15:28:53 +00:00
|
|
|
#include "apetag.h"
|
|
|
|
#include "id3v1.h"
|
2013-05-28 07:33:43 +00:00
|
|
|
#include "wv.h"
|
2011-01-22 13:43:15 +00:00
|
|
|
|
2012-07-28 10:42:25 +00:00
|
|
|
enum WV_FLAGS {
|
2006-09-26 03:41:51 +00:00
|
|
|
WV_MONO = 0x0004,
|
|
|
|
WV_HYBRID = 0x0008,
|
|
|
|
WV_JOINT = 0x0010,
|
|
|
|
WV_CROSSD = 0x0020,
|
|
|
|
WV_HSHAPE = 0x0040,
|
|
|
|
WV_FLOAT = 0x0080,
|
|
|
|
WV_INT32 = 0x0100,
|
|
|
|
WV_HBR = 0x0200,
|
|
|
|
WV_HBAL = 0x0400,
|
|
|
|
WV_MCINIT = 0x0800,
|
|
|
|
WV_MCEND = 0x1000,
|
|
|
|
};
|
|
|
|
|
|
|
|
static const int wv_rates[16] = {
|
2012-07-28 10:42:25 +00:00
|
|
|
6000, 8000, 9600, 11025, 12000, 16000, 22050, 24000,
|
|
|
|
32000, 44100, 48000, 64000, 88200, 96000, 192000, -1
|
2006-09-26 03:41:51 +00:00
|
|
|
};
|
|
|
|
|
2014-09-22 07:19:33 +00:00
|
|
|
typedef struct WVContext {
|
2013-05-26 19:09:22 +00:00
|
|
|
uint8_t block_header[WV_HEADER_SIZE];
|
2013-05-28 07:33:43 +00:00
|
|
|
WvHeader header;
|
2006-09-26 03:41:51 +00:00
|
|
|
int rate, chan, bpp;
|
2011-01-22 13:43:15 +00:00
|
|
|
uint32_t chmask;
|
|
|
|
int multichannel;
|
2006-09-26 03:41:51 +00:00
|
|
|
int block_parsed;
|
2007-01-28 17:23:28 +00:00
|
|
|
int64_t pos;
|
2012-07-30 05:28:35 +00:00
|
|
|
|
|
|
|
int64_t apetag_start;
|
2012-07-28 10:42:25 +00:00
|
|
|
} WVContext;
|
2006-09-26 03:41:51 +00:00
|
|
|
|
|
|
|
static int wv_probe(AVProbeData *p)
|
|
|
|
{
|
|
|
|
/* check file header */
|
|
|
|
if (p->buf_size <= 32)
|
|
|
|
return 0;
|
2013-05-14 21:03:09 +00:00
|
|
|
if (AV_RL32(&p->buf[0]) == MKTAG('w', 'v', 'p', 'k') &&
|
|
|
|
AV_RL32(&p->buf[4]) >= 24 &&
|
|
|
|
AV_RL32(&p->buf[4]) <= WV_BLOCK_LIMIT &&
|
|
|
|
AV_RL16(&p->buf[8]) >= 0x402 &&
|
|
|
|
AV_RL16(&p->buf[8]) <= 0x410)
|
2006-09-26 03:41:51 +00:00
|
|
|
return AVPROBE_SCORE_MAX;
|
|
|
|
else
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2013-05-26 19:09:22 +00:00
|
|
|
static int wv_read_block_header(AVFormatContext *ctx, AVIOContext *pb)
|
2006-09-26 03:41:51 +00:00
|
|
|
{
|
|
|
|
WVContext *wc = ctx->priv_data;
|
2013-05-28 07:33:43 +00:00
|
|
|
int ret;
|
2006-09-26 03:41:51 +00:00
|
|
|
int rate, bpp, chan;
|
2013-05-28 07:33:43 +00:00
|
|
|
uint32_t chmask, flags;
|
2006-09-26 03:41:51 +00:00
|
|
|
|
2011-03-03 19:11:45 +00:00
|
|
|
wc->pos = avio_tell(pb);
|
2012-07-30 05:28:35 +00:00
|
|
|
|
|
|
|
/* don't return bogus packets with the ape tag data */
|
|
|
|
if (wc->apetag_start && wc->pos >= wc->apetag_start)
|
|
|
|
return AVERROR_EOF;
|
|
|
|
|
2013-05-26 19:09:22 +00:00
|
|
|
ret = avio_read(pb, wc->block_header, WV_HEADER_SIZE);
|
|
|
|
if (ret != WV_HEADER_SIZE)
|
|
|
|
return (ret < 0) ? ret : AVERROR_EOF;
|
|
|
|
|
2013-05-28 07:33:43 +00:00
|
|
|
ret = ff_wv_parse_header(&wc->header, wc->block_header);
|
|
|
|
if (ret < 0) {
|
|
|
|
av_log(ctx, AV_LOG_ERROR, "Invalid block header.\n");
|
|
|
|
return ret;
|
2013-05-26 19:09:22 +00:00
|
|
|
}
|
2013-05-28 07:33:43 +00:00
|
|
|
|
|
|
|
if (wc->header.version < 0x402 || wc->header.version > 0x410) {
|
|
|
|
av_log(ctx, AV_LOG_ERROR, "Unsupported version %03X\n", wc->header.version);
|
2013-05-26 19:09:22 +00:00
|
|
|
return AVERROR_PATCHWELCOME;
|
2011-01-22 13:43:15 +00:00
|
|
|
}
|
2013-05-28 07:33:43 +00:00
|
|
|
|
2012-07-28 10:42:25 +00:00
|
|
|
/* Blocks with zero samples don't contain actual audio information
|
|
|
|
* and should be ignored */
|
2013-05-28 07:33:43 +00:00
|
|
|
if (!wc->header.samples)
|
2011-06-28 09:49:32 +00:00
|
|
|
return 0;
|
2012-07-28 10:42:25 +00:00
|
|
|
// parse flags
|
2013-05-28 07:33:43 +00:00
|
|
|
flags = wc->header.flags;
|
|
|
|
bpp = ((flags & 3) + 1) << 3;
|
|
|
|
chan = 1 + !(flags & WV_MONO);
|
|
|
|
chmask = flags & WV_MONO ? AV_CH_LAYOUT_MONO : AV_CH_LAYOUT_STEREO;
|
|
|
|
rate = wv_rates[(flags >> 23) & 0xF];
|
|
|
|
wc->multichannel = !(wc->header.initial && wc->header.final);
|
2012-07-28 10:42:25 +00:00
|
|
|
if (wc->multichannel) {
|
|
|
|
chan = wc->chan;
|
2011-01-22 13:43:15 +00:00
|
|
|
chmask = wc->chmask;
|
2010-12-07 18:15:06 +00:00
|
|
|
}
|
2012-07-28 10:42:25 +00:00
|
|
|
if ((rate == -1 || !chan) && !wc->block_parsed) {
|
2013-05-28 07:33:43 +00:00
|
|
|
int64_t block_end = avio_tell(pb) + wc->header.blocksize;
|
2012-07-28 10:42:25 +00:00
|
|
|
if (!pb->seekable) {
|
|
|
|
av_log(ctx, AV_LOG_ERROR,
|
|
|
|
"Cannot determine additional parameters\n");
|
2012-07-28 10:28:05 +00:00
|
|
|
return AVERROR_INVALIDDATA;
|
2009-11-05 08:14:48 +00:00
|
|
|
}
|
2014-08-18 11:00:24 +00:00
|
|
|
while (avio_tell(pb) < block_end && !avio_feof(pb)) {
|
2009-11-05 08:14:48 +00:00
|
|
|
int id, size;
|
2012-07-28 10:42:25 +00:00
|
|
|
id = avio_r8(pb);
|
2011-02-21 15:43:01 +00:00
|
|
|
size = (id & 0x80) ? avio_rl24(pb) : avio_r8(pb);
|
2009-11-05 08:14:48 +00:00
|
|
|
size <<= 1;
|
2012-07-28 10:42:25 +00:00
|
|
|
if (id & 0x40)
|
2009-11-05 08:14:48 +00:00
|
|
|
size--;
|
2012-07-28 10:42:25 +00:00
|
|
|
switch (id & 0x3F) {
|
2011-01-22 13:43:15 +00:00
|
|
|
case 0xD:
|
2012-07-28 10:42:25 +00:00
|
|
|
if (size <= 1) {
|
|
|
|
av_log(ctx, AV_LOG_ERROR,
|
|
|
|
"Insufficient channel information\n");
|
2012-07-28 10:28:05 +00:00
|
|
|
return AVERROR_INVALIDDATA;
|
2011-01-22 13:43:15 +00:00
|
|
|
}
|
2011-02-21 15:43:01 +00:00
|
|
|
chan = avio_r8(pb);
|
2012-07-28 10:42:25 +00:00
|
|
|
switch (size - 2) {
|
2011-01-22 13:43:15 +00:00
|
|
|
case 0:
|
2011-02-21 15:43:01 +00:00
|
|
|
chmask = avio_r8(pb);
|
2011-01-22 13:43:15 +00:00
|
|
|
break;
|
|
|
|
case 1:
|
2011-02-21 15:43:01 +00:00
|
|
|
chmask = avio_rl16(pb);
|
2011-01-22 13:43:15 +00:00
|
|
|
break;
|
|
|
|
case 2:
|
2011-02-21 15:43:01 +00:00
|
|
|
chmask = avio_rl24(pb);
|
2011-01-22 13:43:15 +00:00
|
|
|
break;
|
|
|
|
case 3:
|
2011-02-21 15:43:01 +00:00
|
|
|
chmask = avio_rl32(pb);
|
2011-01-22 13:43:15 +00:00
|
|
|
break;
|
|
|
|
case 5:
|
2011-03-15 08:14:38 +00:00
|
|
|
avio_skip(pb, 1);
|
2012-07-28 10:42:25 +00:00
|
|
|
chan |= (avio_r8(pb) & 0xF) << 8;
|
2011-02-21 15:43:01 +00:00
|
|
|
chmask = avio_rl24(pb);
|
2011-01-22 13:43:15 +00:00
|
|
|
break;
|
|
|
|
default:
|
2012-07-28 10:42:25 +00:00
|
|
|
av_log(ctx, AV_LOG_ERROR,
|
|
|
|
"Invalid channel info size %d\n", size);
|
2012-07-28 10:28:05 +00:00
|
|
|
return AVERROR_INVALIDDATA;
|
2011-01-22 13:43:15 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 0x27:
|
2011-02-21 15:43:01 +00:00
|
|
|
rate = avio_rl24(pb);
|
2009-11-05 08:14:48 +00:00
|
|
|
break;
|
2011-01-22 13:43:15 +00:00
|
|
|
default:
|
2011-03-15 08:14:38 +00:00
|
|
|
avio_skip(pb, size);
|
2009-11-05 08:14:48 +00:00
|
|
|
}
|
2012-07-28 10:42:25 +00:00
|
|
|
if (id & 0x40)
|
2011-03-15 08:14:38 +00:00
|
|
|
avio_skip(pb, 1);
|
2009-11-05 08:14:48 +00:00
|
|
|
}
|
2012-07-28 10:42:25 +00:00
|
|
|
if (rate == -1) {
|
|
|
|
av_log(ctx, AV_LOG_ERROR,
|
|
|
|
"Cannot determine custom sampling rate\n");
|
2012-07-28 10:28:05 +00:00
|
|
|
return AVERROR_INVALIDDATA;
|
2009-11-05 08:14:48 +00:00
|
|
|
}
|
2013-05-28 07:33:43 +00:00
|
|
|
avio_seek(pb, block_end - wc->header.blocksize, SEEK_SET);
|
2006-09-26 03:41:51 +00:00
|
|
|
}
|
2012-07-28 10:42:25 +00:00
|
|
|
if (!wc->bpp)
|
|
|
|
wc->bpp = bpp;
|
|
|
|
if (!wc->chan)
|
|
|
|
wc->chan = chan;
|
|
|
|
if (!wc->chmask)
|
|
|
|
wc->chmask = chmask;
|
|
|
|
if (!wc->rate)
|
|
|
|
wc->rate = rate;
|
2006-09-26 03:41:51 +00:00
|
|
|
|
2013-05-28 07:33:43 +00:00
|
|
|
if (flags && bpp != wc->bpp) {
|
2012-07-28 10:42:25 +00:00
|
|
|
av_log(ctx, AV_LOG_ERROR,
|
|
|
|
"Bits per sample differ, this block: %i, header block: %i\n",
|
|
|
|
bpp, wc->bpp);
|
2012-07-28 10:28:05 +00:00
|
|
|
return AVERROR_INVALIDDATA;
|
2006-09-26 03:41:51 +00:00
|
|
|
}
|
2013-05-28 07:33:43 +00:00
|
|
|
if (flags && !wc->multichannel && chan != wc->chan) {
|
2012-07-28 10:42:25 +00:00
|
|
|
av_log(ctx, AV_LOG_ERROR,
|
|
|
|
"Channels differ, this block: %i, header block: %i\n",
|
|
|
|
chan, wc->chan);
|
2012-07-28 10:28:05 +00:00
|
|
|
return AVERROR_INVALIDDATA;
|
2006-09-26 03:41:51 +00:00
|
|
|
}
|
2013-05-28 07:33:43 +00:00
|
|
|
if (flags && rate != -1 && rate != wc->rate) {
|
2012-07-28 10:42:25 +00:00
|
|
|
av_log(ctx, AV_LOG_ERROR,
|
|
|
|
"Sampling rate differ, this block: %i, header block: %i\n",
|
|
|
|
rate, wc->rate);
|
2012-07-28 10:28:05 +00:00
|
|
|
return AVERROR_INVALIDDATA;
|
2006-09-26 03:41:51 +00:00
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2012-01-12 12:20:36 +00:00
|
|
|
static int wv_read_header(AVFormatContext *s)
|
2006-09-26 03:41:51 +00:00
|
|
|
{
|
2011-02-20 10:04:12 +00:00
|
|
|
AVIOContext *pb = s->pb;
|
2006-09-26 03:41:51 +00:00
|
|
|
WVContext *wc = s->priv_data;
|
|
|
|
AVStream *st;
|
2012-07-28 10:28:05 +00:00
|
|
|
int ret;
|
2006-09-26 03:41:51 +00:00
|
|
|
|
2009-11-05 08:10:50 +00:00
|
|
|
wc->block_parsed = 0;
|
2012-07-28 10:42:25 +00:00
|
|
|
for (;;) {
|
2013-05-26 19:09:22 +00:00
|
|
|
if ((ret = wv_read_block_header(s, pb)) < 0)
|
2012-07-28 10:28:05 +00:00
|
|
|
return ret;
|
2013-05-28 07:33:43 +00:00
|
|
|
if (!wc->header.samples)
|
|
|
|
avio_skip(pb, wc->header.blocksize);
|
2011-06-28 09:49:32 +00:00
|
|
|
else
|
|
|
|
break;
|
|
|
|
}
|
2006-09-26 03:41:51 +00:00
|
|
|
|
|
|
|
/* now we are ready: build format streams */
|
2011-06-18 09:43:24 +00:00
|
|
|
st = avformat_new_stream(s, NULL);
|
2006-09-26 03:41:51 +00:00
|
|
|
if (!st)
|
2012-07-28 10:28:05 +00:00
|
|
|
return AVERROR(ENOMEM);
|
lavf: replace AVStream.codec with AVStream.codecpar
Currently, AVStream contains an embedded AVCodecContext instance, which
is used by demuxers to export stream parameters to the caller and by
muxers to receive stream parameters from the caller. It is also used
internally as the codec context that is passed to parsers.
In addition, it is also widely used by the callers as the decoding (when
demuxer) or encoding (when muxing) context, though this has been
officially discouraged since Libav 11.
There are multiple important problems with this approach:
- the fields in AVCodecContext are in general one of
* stream parameters
* codec options
* codec state
However, it's not clear which ones are which. It is consequently
unclear which fields are a demuxer allowed to set or a muxer allowed to
read. This leads to erratic behaviour depending on whether decoding or
encoding is being performed or not (and whether it uses the AVStream
embedded codec context).
- various synchronization issues arising from the fact that the same
context is used by several different APIs (muxers/demuxers,
parsers, bitstream filters and encoders/decoders) simultaneously, with
there being no clear rules for who can modify what and the different
processes being typically delayed with respect to each other.
- avformat_find_stream_info() making it necessary to support opening
and closing a single codec context multiple times, thus
complicating the semantics of freeing various allocated objects in the
codec context.
Those problems are resolved by replacing the AVStream embedded codec
context with a newly added AVCodecParameters instance, which stores only
the stream parameters exported by the demuxers or read by the muxers.
2014-06-18 18:42:52 +00:00
|
|
|
st->codecpar->codec_type = AVMEDIA_TYPE_AUDIO;
|
|
|
|
st->codecpar->codec_id = AV_CODEC_ID_WAVPACK;
|
|
|
|
st->codecpar->channels = wc->chan;
|
|
|
|
st->codecpar->channel_layout = wc->chmask;
|
|
|
|
st->codecpar->sample_rate = wc->rate;
|
|
|
|
st->codecpar->bits_per_coded_sample = wc->bpp;
|
2011-11-29 18:28:15 +00:00
|
|
|
avpriv_set_pts_info(st, 64, 1, wc->rate);
|
2010-01-21 09:47:02 +00:00
|
|
|
st->start_time = 0;
|
2013-05-29 08:06:35 +00:00
|
|
|
if (wc->header.total_samples != 0xFFFFFFFFu)
|
|
|
|
st->duration = wc->header.total_samples;
|
2009-10-18 15:28:53 +00:00
|
|
|
|
2012-07-28 10:42:25 +00:00
|
|
|
if (s->pb->seekable) {
|
2011-03-03 19:11:45 +00:00
|
|
|
int64_t cur = avio_tell(s->pb);
|
2012-07-30 05:28:35 +00:00
|
|
|
wc->apetag_start = ff_ape_parse_tag(s);
|
2012-07-28 10:42:25 +00:00
|
|
|
if (!av_dict_get(s->metadata, "", NULL, AV_DICT_IGNORE_SUFFIX))
|
2009-10-18 15:28:53 +00:00
|
|
|
ff_id3v1_read(s);
|
2011-02-28 13:57:54 +00:00
|
|
|
avio_seek(s->pb, cur, SEEK_SET);
|
2009-10-18 15:28:53 +00:00
|
|
|
}
|
|
|
|
|
2006-09-26 03:41:51 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2012-07-28 10:42:25 +00:00
|
|
|
static int wv_read_packet(AVFormatContext *s, AVPacket *pkt)
|
2006-09-26 03:41:51 +00:00
|
|
|
{
|
|
|
|
WVContext *wc = s->priv_data;
|
2006-10-15 10:31:50 +00:00
|
|
|
int ret;
|
2013-05-26 19:09:22 +00:00
|
|
|
int off;
|
2011-08-20 16:14:58 +00:00
|
|
|
int64_t pos;
|
2012-02-08 22:17:54 +00:00
|
|
|
uint32_t block_samples;
|
2006-09-26 03:41:51 +00:00
|
|
|
|
2014-08-07 20:12:41 +00:00
|
|
|
if (avio_feof(s->pb))
|
2012-07-28 10:23:04 +00:00
|
|
|
return AVERROR_EOF;
|
2012-07-28 10:42:25 +00:00
|
|
|
if (wc->block_parsed) {
|
2013-05-26 19:09:22 +00:00
|
|
|
if ((ret = wv_read_block_header(s, s->pb)) < 0)
|
2012-07-28 10:28:05 +00:00
|
|
|
return ret;
|
2006-09-26 03:41:51 +00:00
|
|
|
}
|
|
|
|
|
2011-08-20 16:14:58 +00:00
|
|
|
pos = wc->pos;
|
2013-05-28 07:33:43 +00:00
|
|
|
if (av_new_packet(pkt, wc->header.blocksize + WV_HEADER_SIZE) < 0)
|
2007-07-19 15:21:30 +00:00
|
|
|
return AVERROR(ENOMEM);
|
2013-05-26 19:09:22 +00:00
|
|
|
memcpy(pkt->data, wc->block_header, WV_HEADER_SIZE);
|
2013-05-28 07:33:43 +00:00
|
|
|
ret = avio_read(s->pb, pkt->data + WV_HEADER_SIZE, wc->header.blocksize);
|
|
|
|
if (ret != wc->header.blocksize) {
|
2015-10-23 09:11:31 +00:00
|
|
|
av_packet_unref(pkt);
|
2007-07-19 15:23:32 +00:00
|
|
|
return AVERROR(EIO);
|
2006-09-26 03:41:51 +00:00
|
|
|
}
|
2013-05-28 07:33:43 +00:00
|
|
|
while (!(wc->header.flags & WV_FLAG_FINAL_BLOCK)) {
|
2013-05-26 19:09:22 +00:00
|
|
|
if ((ret = wv_read_block_header(s, s->pb)) < 0) {
|
2015-10-23 09:11:31 +00:00
|
|
|
av_packet_unref(pkt);
|
2011-01-22 13:43:15 +00:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2013-05-26 19:09:22 +00:00
|
|
|
off = pkt->size;
|
2013-05-28 07:33:43 +00:00
|
|
|
if ((ret = av_grow_packet(pkt, WV_HEADER_SIZE + wc->header.blocksize)) < 0) {
|
2015-10-23 09:11:31 +00:00
|
|
|
av_packet_unref(pkt);
|
2012-07-28 10:28:05 +00:00
|
|
|
return ret;
|
2011-01-22 13:43:15 +00:00
|
|
|
}
|
2013-05-26 19:09:22 +00:00
|
|
|
memcpy(pkt->data + off, wc->block_header, WV_HEADER_SIZE);
|
|
|
|
|
2013-05-28 07:33:43 +00:00
|
|
|
ret = avio_read(s->pb, pkt->data + off + WV_HEADER_SIZE, wc->header.blocksize);
|
|
|
|
if (ret != wc->header.blocksize) {
|
2015-10-23 09:11:31 +00:00
|
|
|
av_packet_unref(pkt);
|
2013-05-26 19:09:22 +00:00
|
|
|
return (ret < 0) ? ret : AVERROR_EOF;
|
2011-01-22 13:43:15 +00:00
|
|
|
}
|
|
|
|
}
|
2006-09-26 03:41:51 +00:00
|
|
|
pkt->stream_index = 0;
|
2015-04-23 11:33:06 +00:00
|
|
|
pkt->pos = pos;
|
2012-07-28 10:42:25 +00:00
|
|
|
wc->block_parsed = 1;
|
2013-05-28 07:33:43 +00:00
|
|
|
pkt->pts = wc->header.block_idx;
|
|
|
|
block_samples = wc->header.samples;
|
2012-02-08 22:17:54 +00:00
|
|
|
if (block_samples > INT32_MAX)
|
2012-07-28 10:42:25 +00:00
|
|
|
av_log(s, AV_LOG_WARNING,
|
|
|
|
"Too many samples in block: %"PRIu32"\n", block_samples);
|
2012-02-08 22:17:54 +00:00
|
|
|
else
|
|
|
|
pkt->duration = block_samples;
|
|
|
|
|
2007-01-28 17:23:28 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2011-01-25 22:03:28 +00:00
|
|
|
AVInputFormat ff_wv_demuxer = {
|
2011-07-16 20:18:12 +00:00
|
|
|
.name = "wv",
|
|
|
|
.long_name = NULL_IF_CONFIG_SMALL("WavPack"),
|
|
|
|
.priv_data_size = sizeof(WVContext),
|
|
|
|
.read_probe = wv_probe,
|
|
|
|
.read_header = wv_read_header,
|
|
|
|
.read_packet = wv_read_packet,
|
2015-04-23 11:33:06 +00:00
|
|
|
.flags = AVFMT_GENERIC_INDEX,
|
2006-09-26 03:41:51 +00:00
|
|
|
};
|