aboutsummaryrefslogtreecommitdiffstats
path: root/libavformat/internal.h
diff options
context:
space:
mode:
authorAnssi Hannula <anssi.hannula@iki.fi>2011-02-08 00:46:53 +0200
committerMichael Niedermayer <michaelni@gmx.at>2011-02-09 03:33:55 +0100
commit070e5ba560b86d8b0de72536d9e861b215d7ee20 (patch)
tree10d89911b1028c7499bb65120bf10fac5435905e /libavformat/internal.h
parente74c01db7e2627f36e8829b9fc13fdd8aade5f0f (diff)
downloadffmpeg-070e5ba560b86d8b0de72536d9e861b215d7ee20.tar.gz
lavf: rename ff_probe_input_buffer to make it public
It is useful for applications that hand input data directly to lavf via a ByteIOContext. Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com> (cherry picked from commit 3940caad02fbc4f075e77bc605849b1d84ba1b8e)
Diffstat (limited to 'libavformat/internal.h')
-rw-r--r--libavformat/internal.h19
1 files changed, 0 insertions, 19 deletions
diff --git a/libavformat/internal.h b/libavformat/internal.h
index fc4ee216c1..2fdf61f938 100644
--- a/libavformat/internal.h
+++ b/libavformat/internal.h
@@ -82,25 +82,6 @@ void ff_read_frame_flush(AVFormatContext *s);
/** Get the current time since NTP epoch in microseconds. */
uint64_t ff_ntp_time(void);
-/**
- * Probe a bytestream to determine the input format. Each time a probe returns
- * with a score that is too low, the probe buffer size is increased and another
- * attempt is made. When the maximum probe size is reached, the input format
- * with the highest score is returned.
- *
- * @param pb the bytestream to probe
- * @param fmt the input format is put here
- * @param filename the filename of the stream
- * @param logctx the log context
- * @param offset the offset within the bytestream to probe from
- * @param max_probe_size the maximum probe buffer size (zero for default)
- * @return 0 in case of success, a negative value corresponding to an
- * AVERROR code otherwise
- */
-int ff_probe_input_buffer(ByteIOContext *pb, AVInputFormat **fmt,
- const char *filename, void *logctx,
- unsigned int offset, unsigned int max_probe_size);
-
#if FF_API_URL_SPLIT
/**
* @deprecated use av_url_split() instead