diff options
author | Anton Khirnov <anton@khirnov.net> | 2011-03-06 20:08:30 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2011-03-08 02:09:34 +0100 |
commit | f8bc86d47e8997b9e78e26a90f3884ffe9b55f5e (patch) | |
tree | 74d52937c107df54c03a11ed98fd24b7dca3d61c /libavformat/aviobuf.c | |
parent | 718975aa111bc41deac0d432a7749d0aee6ef7a0 (diff) | |
download | ffmpeg-f8bc86d47e8997b9e78e26a90f3884ffe9b55f5e.tar.gz |
avio: move ff_rewind_with_probe_data from avio.h to avio_internal.h
also change its prefix to ffio
Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
(cherry picked from commit f1ef2cd9ed22be231bb4da8d2f93d9a0c7877aa7)
Diffstat (limited to 'libavformat/aviobuf.c')
-rw-r--r-- | libavformat/aviobuf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/aviobuf.c b/libavformat/aviobuf.c index 6592e9acd6..7762d6cace 100644 --- a/libavformat/aviobuf.c +++ b/libavformat/aviobuf.c @@ -837,7 +837,7 @@ static int url_resetbuf(AVIOContext *s, int flags) return 0; } -int ff_rewind_with_probe_data(AVIOContext *s, unsigned char *buf, int buf_size) +int ffio_rewind_with_probe_data(AVIOContext *s, unsigned char *buf, int buf_size) { int64_t buffer_start; int buffer_size; |