summaryrefslogtreecommitdiff
path: root/libavformat/mov.c
diff options
context:
space:
mode:
authorSascha Sommer <saschasommer@freenet.de>2011-02-06 13:54:03 +0100
committerMichael Niedermayer <michaelni@gmx.at>2011-02-09 03:30:01 +0100
commite11afd71a37316e2ea4e765dcb7a6a72867d9bc8 (patch)
treefac98c1dfbc3bab4edc53bfcde8b2e5a342eedb1 /libavformat/mov.c
parent5fb06ffac7af5a8c6f21e6d0a2dd8c938fdde3f8 (diff)
pass QDMC extradata to the decoder
Makes playing QDMC files in MPlayer work when using the libavformat demuxer. Problem was that the extradata was not passed from demuxer to decoder. Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com> (cherry picked from commit ed19fafd486d6ab0d6e1eba80ceaa482a740c556)
Diffstat (limited to 'libavformat/mov.c')
-rw-r--r--libavformat/mov.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavformat/mov.c b/libavformat/mov.c
index a48000fe52..310a399d83 100644
--- a/libavformat/mov.c
+++ b/libavformat/mov.c
@@ -769,8 +769,8 @@ static int mov_read_wave(MOVContext *c, ByteIOContext *pb, MOVAtom atom)
if((uint64_t)atom.size > (1<<30))
return -1;
- if (st->codec->codec_id == CODEC_ID_QDM2) {
- // pass all frma atom to codec, needed at least for QDM2
+ if (st->codec->codec_id == CODEC_ID_QDM2 || st->codec->codec_id == CODEC_ID_QDMC) {
+ // pass all frma atom to codec, needed at least for QDMC and QDM2
av_free(st->codec->extradata);
st->codec->extradata = av_mallocz(atom.size + FF_INPUT_BUFFER_PADDING_SIZE);
if (!st->codec->extradata)