summaryrefslogtreecommitdiff
path: root/libavformat/asf.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2004-10-24 13:07:59 +0000
committerMichael Niedermayer <michaelni@gmx.at>2004-10-24 13:07:59 +0000
commitafbb5ce40633eb05d255fdd6b27705f66a58ba95 (patch)
tree73df9b778198ec4ab8813a48d5aeb38bad117bd0 /libavformat/asf.c
parentdb4d9faf8d5269f195e0271067fc0e3cbc0838b5 (diff)
dvr-ms video decoding support
Originally committed as revision 3631 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/asf.c')
-rw-r--r--libavformat/asf.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/libavformat/asf.c b/libavformat/asf.c
index b804bd7b5a..9f94137dc0 100644
--- a/libavformat/asf.c
+++ b/libavformat/asf.c
@@ -295,6 +295,8 @@ static int asf_read_header(AVFormatContext *s, AVFormatParameters *ap)
st->codec.codec_tag = tag1;
st->codec.codec_id = codec_get_id(codec_bmp_tags, tag1);
+ if(tag1 == MKTAG('D', 'V', 'R', ' '))
+ st->need_parsing = 1;
}
pos2 = url_ftell(pb);
url_fskip(pb, gsize - (pos2 - pos1 + 24));