summaryrefslogtreecommitdiff
path: root/libavformat/internal.h
diff options
context:
space:
mode:
authorMicah F. Galizia <micahgalizia@gmail.com>2010-03-14 22:40:16 +0000
committerStefano Sabatini <stefano.sabatini-lala@poste.it>2010-03-14 22:40:16 +0000
commiteadd495d06b5c553f6026fe905dd0b3bc23fe35b (patch)
treea0ce6874ea498bf0f58017f3780e0c1b279017bc /libavformat/internal.h
parent1e470fadcbe08cd3397b7658784b7fb7fcb5ceeb (diff)
Move the probe loop from av_open_input_file() into its own method
av_probe_input_buffer() so that it can be reused. Here are a few differences to the original way things were probed: - maximum probe buffer size can be specified as a parameter. - offset within the stream to probe from can be specified as a parameter. - instead of seeking back to the start each time a probe fails, stream data is appended to the reallocated buffer. This lowers the amount of data read from the stream (there is no repetition) and results in fewer closed and reopened streams (when seeking fails). New attempt after r22296, which was revert in r22315 due to a FATE failure. See the thread: Subject: [FFmpeg-devel] [PATCH] Move av_open_input_file probe loop to its own method Date: 2010-03-05 03:23:57 GMT Patch by Micah F. Galizia printf("%s%s@%s.%s", "micah", "galizia", "gmail", "com"). Originally committed as revision 22532 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/internal.h')
-rw-r--r--libavformat/internal.h19
1 files changed, 19 insertions, 0 deletions
diff --git a/libavformat/internal.h b/libavformat/internal.h
index 743ee981d8..be3fbb2b2f 100644
--- a/libavformat/internal.h
+++ b/libavformat/internal.h
@@ -40,4 +40,23 @@ void av_read_frame_flush(AVFormatContext *s);
/** Gets the current time since NTP epoch in microseconds. */
uint64_t ff_ntp_time(void);
+/**
+ * Probes 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, it may be closed and opened again
+ * @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);
+
#endif /* AVFORMAT_INTERNAL_H */