Browse Source

fix probe of high bitrate mpeg2video

Originally committed as revision 5471 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.5
Michael Niedermayer 19 years ago
parent
commit
329b1e755e
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavformat/utils.c

+ 1
- 1
libavformat/utils.c View File

@@ -515,7 +515,7 @@ int av_open_input_stream(AVFormatContext **ic_ptr,

/** 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


Loading…
Cancel
Save