[FFmpeg-cvslog] r14183 - trunk/libavformat/asf.c

michael subversion
Sat Jul 12 18:43:47 CEST 2008


Author: michael
Date: Sat Jul 12 18:43:46 2008
New Revision: 14183

Log:
command_streams are type data not unknown.


Modified:
   trunk/libavformat/asf.c

Modified: trunk/libavformat/asf.c
==============================================================================
--- trunk/libavformat/asf.c	(original)
+++ trunk/libavformat/asf.c	Sat Jul 12 18:43:46 2008
@@ -227,7 +227,7 @@ static int asf_read_header(AVFormatConte
             } 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;




More information about the ffmpeg-cvslog mailing list