From 3e86dba24b61527ecbd1780f3f7d3bd159c203d9 Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Sat, 12 Jul 2008 16:43:46 +0000 Subject: command_streams are type data not unknown. Originally committed as revision 14183 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavformat/asf.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libavformat') diff --git a/libavformat/asf.c b/libavformat/asf.c index faa0d6916a..dc6557402a 100644 --- a/libavformat/asf.c +++ b/libavformat/asf.c @@ -227,7 +227,7 @@ static int asf_read_header(AVFormatContext *s, AVFormatParameters *ap) } else if (!memcmp(&g, &video_stream, sizeof(GUID))) { type = CODEC_TYPE_VIDEO; } else if (!memcmp(&g, &command_stream, sizeof(GUID))) { - type = CODEC_TYPE_UNKNOWN; + type = CODEC_TYPE_DATA; } else if (!memcmp(&g, &ext_stream_embed_stream_header, sizeof(GUID))) { test_for_ext_stream_audio = 1; type = CODEC_TYPE_UNKNOWN; -- cgit v1.2.3