summaryrefslogtreecommitdiff
path: root/libavformat/utils.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2013-08-26 00:54:30 +0200
committerMichael Niedermayer <michaelni@gmx.at>2013-08-26 00:54:30 +0200
commita9d1a7c79b3762341488a25bc36db7627625d15e (patch)
treea53ff9137e0bd60b553cd1b5863bf6c4ff82f20f /libavformat/utils.c
parent22fbc7f8becdee1fd6ab7cac93ae23d6022e9a56 (diff)
avformat: move PROBE_BUF_M* to internal.h
They will be used by the mp3 probe function in the next commit Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavformat/utils.c')
-rw-r--r--libavformat/utils.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/libavformat/utils.c b/libavformat/utils.c
index dca4304963..ab2f424146 100644
--- a/libavformat/utils.c
+++ b/libavformat/utils.c
@@ -309,10 +309,6 @@ int av_demuxer_open(AVFormatContext *ic){
}
-/** size of probe buffer, for guessing file type from file contents */
-#define PROBE_BUF_MIN 2048
-#define PROBE_BUF_MAX (1<<20)
-
int av_probe_input_buffer(AVIOContext *pb, AVInputFormat **fmt,
const char *filename, void *logctx,
unsigned int offset, unsigned int max_probe_size)