[Ffmpeg-cvslog] r5471 - trunk/libavformat/utils.c

michael subversion
Tue Jun 13 13:10:55 CEST 2006


Author: michael
Date: Tue Jun 13 13:10:55 2006
New Revision: 5471

Modified:
   trunk/libavformat/utils.c

Log:
fix probe of high bitrate mpeg2video


Modified: trunk/libavformat/utils.c
==============================================================================
--- trunk/libavformat/utils.c	(original)
+++ trunk/libavformat/utils.c	Tue Jun 13 13:10:55 2006
@@ -515,7 +515,7 @@
 
 /** Size of probe buffer, for guessing file type from file contents. */
 #define PROBE_BUF_MIN 2048
-#define PROBE_BUF_MAX 131072
+#define PROBE_BUF_MAX (1<<20)
 
 /**
  * Open a media file as input. The codec are not opened. Only the file




More information about the ffmpeg-cvslog mailing list