123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261 |
- #include <inttypes.h>
- #include "avformat.h"
- #include "riff.h"
- typedef struct {
- 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;
- }
- static int xwma_read_header(AVFormatContext *s, AVFormatParameters *ap)
- {
- int64_t size, av_uninit(data_size);
- int ret;
- uint32_t dpds_table_size = 0;
- uint32_t *dpds_table = 0;
- unsigned int tag;
- AVIOContext *pb = s->pb;
- AVStream *st;
- XWMAContext *xwma = s->priv_data;
- int i;
-
-
- tag = avio_rl32(pb);
- if (tag != MKTAG('R', 'I', 'F', 'F'))
- return -1;
- avio_rl32(pb);
- tag = avio_rl32(pb);
- if (tag != MKTAG('X', 'W', 'M', 'A'))
- return -1;
-
- tag = avio_rl32(pb);
- if (tag != MKTAG('f', 'm', 't', ' '))
- return -1;
- size = avio_rl32(pb);
- st = av_new_stream(s, 0);
- if (!st)
- return AVERROR(ENOMEM);
- ret = ff_get_wav_header(pb, st->codec, size);
- if (ret < 0)
- return ret;
- st->need_parsing = AVSTREAM_PARSE_NONE;
-
- if (st->codec->codec_id != CODEC_ID_WMAV2) {
- av_log(s, AV_LOG_WARNING, "unexpected codec (tag 0x04%x; id %d)\n",
- st->codec->codec_tag, st->codec->codec_id);
- av_log_ask_for_sample(s, NULL);
- } else {
-
- if (st->codec->extradata_size != 0) {
-
- av_log(s, AV_LOG_WARNING, "unexpected extradata (%d bytes)\n",
- st->codec->extradata_size);
- av_log_ask_for_sample(s, NULL);
- } else {
- st->codec->extradata_size = 6;
- st->codec->extradata = av_mallocz(6 + FF_INPUT_BUFFER_PADDING_SIZE);
- if (!st->codec->extradata)
- return AVERROR(ENOMEM);
-
- st->codec->extradata[4] = 31;
- }
- }
-
- av_set_pts_info(st, 64, 1, st->codec->sample_rate);
-
- for (;;) {
- if (pb->eof_reached)
- return -1;
-
- tag = avio_rl32(pb);
- size = avio_rl32(pb);
- if (tag == MKTAG('d', 'a', 't', 'a')) {
-
- break;
- } else if (tag == MKTAG('d','p','d','s')) {
-
-
- if (dpds_table) {
- av_log(s, AV_LOG_ERROR, "two dpds chunks present\n");
- return -1;
- }
-
- if (size & 3) {
- av_log(s, AV_LOG_WARNING,
- "dpds chunk size %"PRId64" not divisible by 4\n", size);
- }
- dpds_table_size = size / 4;
- if (dpds_table_size == 0 || dpds_table_size >= INT_MAX / 4) {
- av_log(s, AV_LOG_ERROR,
- "dpds chunk size %"PRId64" invalid\n", size);
- return -1;
- }
-
- dpds_table = av_malloc(dpds_table_size * sizeof(uint32_t));
- 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);
- }
-
- if (size < 0)
- return -1;
- 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
- = (st->codec->channels * st->codec->bits_per_coded_sample) >> 3;
-
- const uint64_t total_decoded_bytes = dpds_table[dpds_table_size - 1];
- st->duration = total_decoded_bytes / bytes_per_sample;
-
- cur_pos = avio_tell(pb);
- for (i = 0; i < dpds_table_size; ++i) {
-
- av_add_index_entry(st,
- cur_pos + (i+1) * st->codec->block_align,
- dpds_table[i] / bytes_per_sample,
- st->codec->block_align,
- 0,
- AVINDEX_KEYFRAME);
- }
- } else if (st->codec->bit_rate) {
-
- st->duration = (size<<3) * st->codec->sample_rate / st->codec->bit_rate;
- }
- av_free(dpds_table);
- return 0;
- }
- 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;
- }
-
- size = (st->codec->block_align > 1) ? st->codec->block_align : 2230;
- 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 = {
- .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,
- };
|