libavformat/xwma.c
ad4c5034
 /*
  * xWMA demuxer
  * Copyright (c) 2011 Max Horn
  *
85b21147
  * This file is part of FFmpeg.
ad4c5034
  *
85b21147
  * FFmpeg is free software; you can redistribute it and/or
ad4c5034
  * modify it under the terms of the GNU Lesser General Public
  * License as published by the Free Software Foundation; either
  * version 2.1 of the License, or (at your option) any later version.
  *
85b21147
  * FFmpeg is distributed in the hope that it will be useful,
ad4c5034
  * 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
85b21147
  * License along with FFmpeg; if not, write to the Free Software
ad4c5034
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  */
 
4d012eb5
 #include <inttypes.h>
8f8bc923
 #include <stdint.h>
4d012eb5
 
ad4c5034
 #include "avformat.h"
c3f9ebf7
 #include "internal.h"
ad4c5034
 #include "riff.h"
 
 /*
  * Demuxer for xWMA, a Microsoft audio container used by XAudio 2.
  */
 
daf8cf35
 typedef struct XWMAContext {
ad4c5034
     int64_t data_end;
 } XWMAContext;
 
 static int xwma_probe(AVProbeData *p)
 {
     if (!memcmp(p->buf, "RIFF", 4) && !memcmp(p->buf + 8, "XWMA", 4))
         return AVPROBE_SCORE_MAX;
     return 0;
 }
 
6e9651d1
 static int xwma_read_header(AVFormatContext *s)
ad4c5034
 {
c36bad3b
     int64_t size;
fd9badd3
     int ret = 0;
ad4c5034
     uint32_t dpds_table_size = 0;
c31ad87b
     uint32_t *dpds_table = NULL;
ad4c5034
     unsigned int tag;
     AVIOContext *pb = s->pb;
     AVStream *st;
     XWMAContext *xwma = s->priv_data;
     int i;
 
     /* The following code is mostly copied from wav.c, with some
      * minor alterations.
      */
 
     /* check RIFF header */
     tag = avio_rl32(pb);
     if (tag != MKTAG('R', 'I', 'F', 'F'))
         return -1;
     avio_rl32(pb); /* file size */
     tag = avio_rl32(pb);
     if (tag != MKTAG('X', 'W', 'M', 'A'))
         return -1;
 
     /* parse fmt header */
     tag = avio_rl32(pb);
     if (tag != MKTAG('f', 'm', 't', ' '))
         return -1;
     size = avio_rl32(pb);
3b3bbdd3
     st = avformat_new_stream(s, NULL);
ad4c5034
     if (!st)
         return AVERROR(ENOMEM);
 
6f69f7a8
     ret = ff_get_wav_header(s, pb, st->codecpar, size, 0);
ca402f32
     if (ret < 0)
         return ret;
ad4c5034
     st->need_parsing = AVSTREAM_PARSE_NONE;
 
     /* All xWMA files I have seen contained WMAv2 data. If there are files
      * using WMA Pro or some other codec, then we need to figure out the right
      * extradata for that. Thus, ask the user for feedback, but try to go on
      * anyway.
      */
6f69f7a8
     if (st->codecpar->codec_id != AV_CODEC_ID_WMAV2 &&
         st->codecpar->codec_id != AV_CODEC_ID_WMAPRO) {
54904525
         avpriv_request_sample(s, "Unexpected codec (tag %s; id %d)",
                               av_fourcc2str(st->codecpar->codec_tag),
                               st->codecpar->codec_id);
ad4c5034
     } else {
         /* In all xWMA files I have seen, there is no extradata. But the WMA
          * codecs require extradata, so we provide our own fake extradata.
          *
          * First, check that there really was no extradata in the header. If
ef8b54fc
          * there was, then try to use it, after asking the user to provide a
ad4c5034
          * sample of this unusual file.
          */
9200514a
         if (st->codecpar->extradata_size != 0) {
ad4c5034
             /* Surprise, surprise: We *did* get some extradata. No idea
              * if it will work, but just go on and try it, after asking
              * the user for a sample.
              */
1ecdf891
             avpriv_request_sample(s, "Unexpected extradata (%d bytes)",
9200514a
                                   st->codecpar->extradata_size);
6f69f7a8
         } else if (st->codecpar->codec_id == AV_CODEC_ID_WMAPRO) {
             if (ff_alloc_extradata(st->codecpar, 18))
6498b34b
                 return AVERROR(ENOMEM);
 
6f69f7a8
             memset(st->codecpar->extradata, 0, st->codecpar->extradata_size);
             st->codecpar->extradata[ 0] = st->codecpar->bits_per_coded_sample;
             st->codecpar->extradata[14] = 224;
ad4c5034
         } else {
6f69f7a8
             if (ff_alloc_extradata(st->codecpar, 6))
ad4c5034
                 return AVERROR(ENOMEM);
 
6f69f7a8
             memset(st->codecpar->extradata, 0, st->codecpar->extradata_size);
ad4c5034
             /* setup extradata with our experimentally obtained value */
9200514a
             st->codecpar->extradata[4] = 31;
ad4c5034
         }
     }
 
9200514a
     if (!st->codecpar->channels) {
5023b89b
         av_log(s, AV_LOG_WARNING, "Invalid channel count: %d\n",
9200514a
                st->codecpar->channels);
5023b89b
         return AVERROR_INVALIDDATA;
     }
9200514a
     if (!st->codecpar->bits_per_coded_sample) {
5023b89b
         av_log(s, AV_LOG_WARNING, "Invalid bits_per_coded_sample: %d\n",
9200514a
                st->codecpar->bits_per_coded_sample);
5023b89b
         return AVERROR_INVALIDDATA;
     }
 
ad4c5034
     /* set the sample rate */
9200514a
     avpriv_set_pts_info(st, 64, 1, st->codecpar->sample_rate);
ad4c5034
 
     /* parse the remaining RIFF chunks */
     for (;;) {
375a0c03
         if (pb->eof_reached) {
             ret = AVERROR_EOF;
fd9badd3
             goto fail;
375a0c03
         }
ad4c5034
         /* read next chunk tag */
         tag = avio_rl32(pb);
         size = avio_rl32(pb);
         if (tag == MKTAG('d', 'a', 't', 'a')) {
             /* We assume that the data chunk comes last. */
             break;
         } else if (tag == MKTAG('d','p','d','s')) {
             /* Quoting the MSDN xWMA docs on the dpds chunk: "Contains the
              * decoded packet cumulative data size array, each element is the
              * number of bytes accumulated after the corresponding xWMA packet
ef8b54fc
              * is decoded in order."
ad4c5034
              *
9200514a
              * Each packet has size equal to st->codecpar->block_align, which in
ad4c5034
              * all cases I saw so far was always 2230. Thus, we can use the
              * dpds data to compute a seeking index.
              */
 
             /* Error out if there is more than one dpds chunk. */
             if (dpds_table) {
                 av_log(s, AV_LOG_ERROR, "two dpds chunks present\n");
375a0c03
                 ret = AVERROR_INVALIDDATA;
fd9badd3
                 goto fail;
ad4c5034
             }
 
             /* Compute the number of entries in the dpds chunk. */
             if (size & 3) {  /* Size should be divisible by four */
4d012eb5
                 av_log(s, AV_LOG_WARNING,
                        "dpds chunk size %"PRId64" not divisible by 4\n", size);
ad4c5034
             }
             dpds_table_size = size / 4;
             if (dpds_table_size == 0 || dpds_table_size >= INT_MAX / 4) {
4d012eb5
                 av_log(s, AV_LOG_ERROR,
                        "dpds chunk size %"PRId64" invalid\n", size);
cf4dbe9a
                 return AVERROR_INVALIDDATA;
ad4c5034
             }
 
             /* Allocate some temporary storage to keep the dpds data around.
              * for processing later on.
              */
d6bcdf0d
             dpds_table = av_malloc_array(dpds_table_size, sizeof(uint32_t));
ad4c5034
             if (!dpds_table) {
                 return AVERROR(ENOMEM);
             }
 
             for (i = 0; i < dpds_table_size; ++i) {
                 dpds_table[i] = avio_rl32(pb);
                 size -= 4;
             }
         }
         avio_skip(pb, size);
     }
 
     /* Determine overall data length */
375a0c03
     if (size < 0) {
         ret = AVERROR_INVALIDDATA;
fd9badd3
         goto fail;
375a0c03
     }
ad4c5034
     if (!size) {
         xwma->data_end = INT64_MAX;
     } else
         xwma->data_end = avio_tell(pb) + size;
 
 
     if (dpds_table && dpds_table_size) {
         int64_t cur_pos;
         const uint32_t bytes_per_sample
9200514a
                 = (st->codecpar->channels * st->codecpar->bits_per_coded_sample) >> 3;
ad4c5034
 
         /* Estimate the duration from the total number of output bytes. */
         const uint64_t total_decoded_bytes = dpds_table[dpds_table_size - 1];
a3cb7f99
 
adc09136
         if (!bytes_per_sample) {
             av_log(s, AV_LOG_ERROR,
                    "Invalid bits_per_coded_sample %d for %d channels\n",
9200514a
                    st->codecpar->bits_per_coded_sample, st->codecpar->channels);
375a0c03
             ret = AVERROR_INVALIDDATA;
fd9badd3
             goto fail;
a3cb7f99
         }
 
ad4c5034
         st->duration = total_decoded_bytes / bytes_per_sample;
 
         /* Use the dpds data to build a seek table.  We can only do this after
          * we know the offset to the data chunk, as we need that to determine
          * the actual offset to each input block.
          * Note: If we allowed ourselves to assume that the data chunk always
          * follows immediately after the dpds block, we could of course guess
          * the data block's start offset already while reading the dpds chunk.
          * I decided against that, just in case other chunks ever are
          * discovered.
          */
         cur_pos = avio_tell(pb);
         for (i = 0; i < dpds_table_size; ++i) {
             /* From the number of output bytes that would accumulate in the
              * output buffer after decoding the first (i+1) packets, we compute
              * an offset / timestamp pair.
              */
             av_add_index_entry(st,
9200514a
                                cur_pos + (i+1) * st->codecpar->block_align, /* pos */
                                dpds_table[i] / bytes_per_sample,            /* timestamp */
                                st->codecpar->block_align,                   /* size */
                                0,                                           /* duration */
ad4c5034
                                AVINDEX_KEYFRAME);
         }
9200514a
     } else if (st->codecpar->bit_rate) {
ad4c5034
         /* No dpds chunk was present (or only an empty one), so estimate
          * the total duration using the average bits per sample and the
          * total data length.
          */
9200514a
         st->duration = (size<<3) * st->codecpar->sample_rate / st->codecpar->bit_rate;
ad4c5034
     }
 
fd9badd3
 fail:
ad4c5034
     av_free(dpds_table);
 
375a0c03
     return ret;
ad4c5034
 }
 
 static int xwma_read_packet(AVFormatContext *s, AVPacket *pkt)
 {
     int ret, size;
     int64_t left;
     AVStream *st;
     XWMAContext *xwma = s->priv_data;
 
     st = s->streams[0];
 
     left = xwma->data_end - avio_tell(s->pb);
     if (left <= 0) {
         return AVERROR_EOF;
     }
 
     /* read a single block; the default block size is 2230. */
9200514a
     size = (st->codecpar->block_align > 1) ? st->codecpar->block_align : 2230;
ad4c5034
     size = FFMIN(size, left);
 
     ret  = av_get_packet(s->pb, pkt, size);
     if (ret < 0)
         return ret;
 
     pkt->stream_index = 0;
     return ret;
 }
 
 AVInputFormat ff_xwma_demuxer = {
dfc2c4d9
     .name           = "xwma",
     .long_name      = NULL_IF_CONFIG_SMALL("Microsoft xWMA"),
     .priv_data_size = sizeof(XWMAContext),
     .read_probe     = xwma_probe,
     .read_header    = xwma_read_header,
     .read_packet    = xwma_read_packet,
ad4c5034
 };