]> git.sesse.net Git - ffmpeg/commitdiff
avformat: Move MAX_PROBE_PACKETS to internal.h
authorMichael Niedermayer <michael@niedermayer.cc>
Sun, 9 Aug 2015 21:09:41 +0000 (23:09 +0200)
committerMichael Niedermayer <michael@niedermayer.cc>
Wed, 12 Aug 2015 15:33:47 +0000 (17:33 +0200)
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
libavformat/avformat.h
libavformat/internal.h

index fb69852f458a625addad65bb93bc465c7c47960a..6933624f261c8c8a234d081d52902f2f1e6c2038 100644 (file)
@@ -1015,7 +1015,6 @@ typedef struct AVStream {
     /**
      * Number of packets to buffer for codec probing
      */
-#define MAX_PROBE_PACKETS 2500
     int probe_packets;
 
     /**
index 77914d802c9e79c36ea069cfc1cd395f253936ab..352739e7dd030155b2802d07c7b22e746988789f 100644 (file)
@@ -31,6 +31,8 @@
 #define PROBE_BUF_MIN 2048
 #define PROBE_BUF_MAX (1 << 20)
 
+#define MAX_PROBE_PACKETS 2500
+
 #ifdef DEBUG
 #    define hex_dump_debug(class, buf, size) av_hex_dump_log(class, AV_LOG_DEBUG, buf, size)
 #else