libavformat/wv.c
730581f3
 /*
  * WavPack demuxer
406792e7
  * Copyright (c) 2006 Konstantin Shishkov
730581f3
  *
b78e7197
  * This file is part of FFmpeg.
  *
  * FFmpeg is free software; you can redistribute it and/or
730581f3
  * modify it under the terms of the GNU Lesser General Public
  * License as published by the Free Software Foundation; either
b78e7197
  * version 2.1 of the License, or (at your option) any later version.
730581f3
  *
b78e7197
  * FFmpeg is distributed in the hope that it will be useful,
730581f3
  * 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
b78e7197
  * License along with FFmpeg; if not, write to the Free Software
730581f3
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  */
 
6a5d31ac
 #include "libavutil/intreadwrite.h"
730581f3
 #include "avformat.h"
 
 // specs say that maximum block size is 1Mb
 #define WV_BLOCK_LIMIT 1047576
 
 #define WV_EXTRA_SIZE 12
 
 enum WV_FLAGS{
     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] = {
      6000,  8000,  9600, 11025, 12000, 16000, 22050, 24000,
     32000, 44100, 48000, 64000, 88200, 96000, 192000, -1
 };
 
 typedef struct{
     uint32_t blksize, flags;
     int rate, chan, bpp;
49561f99
     uint32_t samples, soff;
730581f3
     int block_parsed;
     uint8_t extra[WV_EXTRA_SIZE];
49561f99
     int64_t pos;
730581f3
 }WVContext;
 
 static int wv_probe(AVProbeData *p)
 {
     /* check file header */
     if (p->buf_size <= 32)
         return 0;
     if (p->buf[0] == 'w' && p->buf[1] == 'v' &&
         p->buf[2] == 'p' && p->buf[3] == 'k')
         return AVPROBE_SCORE_MAX;
     else
         return 0;
 }
 
 static int wv_read_block_header(AVFormatContext *ctx, ByteIOContext *pb)
 {
     WVContext *wc = ctx->priv_data;
     uint32_t tag, ver;
     int size;
     int rate, bpp, chan;
 
49561f99
     wc->pos = url_ftell(pb);
730581f3
     tag = get_le32(pb);
     if (tag != MKTAG('w', 'v', 'p', 'k'))
         return -1;
     size = get_le32(pb);
     if(size < 24 || size > WV_BLOCK_LIMIT){
         av_log(ctx, AV_LOG_ERROR, "Incorrect block size %i\n", size);
         return -1;
     }
     wc->blksize = size;
     ver = get_le16(pb);
a6ba65f7
     if(ver < 0x402 || ver > 0x410){
730581f3
         av_log(ctx, AV_LOG_ERROR, "Unsupported version %03X\n", ver);
         return -1;
     }
     get_byte(pb); // track no
     get_byte(pb); // track sub index
49561f99
     wc->samples = get_le32(pb); // total samples in file
     wc->soff = get_le32(pb); // offset in samples of current block
730581f3
     get_buffer(pb, wc->extra, WV_EXTRA_SIZE);
fead30d4
     wc->flags = AV_RL32(wc->extra + 4);
730581f3
     //parse flags
     if(wc->flags & WV_FLOAT){
         av_log(ctx, AV_LOG_ERROR, "Floating point data is not supported\n");
         return -1;
     }
 
     bpp = ((wc->flags & 3) + 1) << 3;
     chan = 1 + !(wc->flags & WV_MONO);
     rate = wv_rates[(wc->flags >> 23) & 0xF];
     if(rate == -1){
         av_log(ctx, AV_LOG_ERROR, "Unknown sampling rate\n");
         return -1;
     }
     if(!wc->bpp) wc->bpp = bpp;
     if(!wc->chan) wc->chan = chan;
     if(!wc->rate) wc->rate = rate;
 
a8789714
     if(wc->flags && bpp != wc->bpp){
730581f3
         av_log(ctx, AV_LOG_ERROR, "Bits per sample differ, this block: %i, header block: %i\n", bpp, wc->bpp);
         return -1;
     }
a8789714
     if(wc->flags && chan != wc->chan){
730581f3
         av_log(ctx, AV_LOG_ERROR, "Channels differ, this block: %i, header block: %i\n", chan, wc->chan);
         return -1;
     }
a8789714
     if(wc->flags && rate != wc->rate){
730581f3
         av_log(ctx, AV_LOG_ERROR, "Sampling rate differ, this block: %i, header block: %i\n", rate, wc->rate);
         return -1;
     }
     wc->blksize = size - 24;
     return 0;
 }
 
 static int wv_read_header(AVFormatContext *s,
                           AVFormatParameters *ap)
 {
899681cd
     ByteIOContext *pb = s->pb;
730581f3
     WVContext *wc = s->priv_data;
     AVStream *st;
 
     if(wv_read_block_header(s, pb) < 0)
         return -1;
 
     wc->block_parsed = 0;
     /* now we are ready: build format streams */
     st = av_new_stream(s, 0);
     if (!st)
         return -1;
     st->codec->codec_type = CODEC_TYPE_AUDIO;
     st->codec->codec_id = CODEC_ID_WAVPACK;
     st->codec->channels = wc->chan;
     st->codec->sample_rate = wc->rate;
dd1c8f3e
     st->codec->bits_per_coded_sample = wc->bpp;
730581f3
     av_set_pts_info(st, 64, 1, wc->rate);
49561f99
     s->start_time = 0;
     s->duration = (int64_t)wc->samples * AV_TIME_BASE / st->codec->sample_rate;
730581f3
     return 0;
 }
 
 static int wv_read_packet(AVFormatContext *s,
                           AVPacket *pkt)
 {
     WVContext *wc = s->priv_data;
827f0561
     int ret;
730581f3
 
899681cd
     if (url_feof(s->pb))
8fa36ae0
         return AVERROR(EIO);
730581f3
     if(wc->block_parsed){
899681cd
         if(wv_read_block_header(s, s->pb) < 0)
730581f3
             return -1;
     }
 
     if(av_new_packet(pkt, wc->blksize + WV_EXTRA_SIZE) < 0)
769e10f0
         return AVERROR(ENOMEM);
730581f3
     memcpy(pkt->data, wc->extra, WV_EXTRA_SIZE);
899681cd
     ret = get_buffer(s->pb, pkt->data + WV_EXTRA_SIZE, wc->blksize);
730581f3
     if(ret != wc->blksize){
         av_free_packet(pkt);
6f3e0b21
         return AVERROR(EIO);
730581f3
     }
     pkt->stream_index = 0;
     wc->block_parsed = 1;
     pkt->size = ret + WV_EXTRA_SIZE;
49561f99
     pkt->pts = wc->soff;
     av_add_index_entry(s->streams[0], wc->pos, pkt->pts, 0, 0, AVINDEX_KEYFRAME);
730581f3
     return 0;
 }
 
49561f99
 static int wv_read_seek(AVFormatContext *s, int stream_index, int64_t timestamp, int flags)
 {
     AVStream *st = s->streams[stream_index];
     WVContext *wc = s->priv_data;
     AVPacket pkt1, *pkt = &pkt1;
     int ret;
     int index = av_index_search_timestamp(st, timestamp, flags);
     int64_t pos, pts;
 
     /* if found, seek there */
     if (index >= 0){
         wc->block_parsed = 1;
899681cd
         url_fseek(s->pb, st->index_entries[index].pos, SEEK_SET);
49561f99
         return 0;
     }
     /* if timestamp is out of bounds, return error */
     if(timestamp < 0 || timestamp >= s->duration)
         return -1;
 
899681cd
     pos = url_ftell(s->pb);
49561f99
     do{
         ret = av_read_frame(s, pkt);
         if (ret < 0){
899681cd
             url_fseek(s->pb, pos, SEEK_SET);
49561f99
             return -1;
         }
         pts = pkt->pts;
         av_free_packet(pkt);
     }while(pts < timestamp);
     return 0;
 }
 
730581f3
 AVInputFormat wv_demuxer = {
     "wv",
bde15e74
     NULL_IF_CONFIG_SMALL("WavPack"),
730581f3
     sizeof(WVContext),
     wv_probe,
     wv_read_header,
     wv_read_packet,
6a862b49
     NULL,
49561f99
     wv_read_seek,
730581f3
 };