diff options
author | Anton Khirnov | 2011-03-06 20:08:30 +0100 |
---|---|---|
committer | Ronald S. Bultje | 2011-03-07 12:25:36 -0500 |
commit | f1ef2cd9ed22be231bb4da8d2f93d9a0c7877aa7 (patch) | |
tree | fd9ec78eaa106f3f8172a1bc36e459d102ad99a7 /libavformat/aviobuf.c | |
parent | e8bb2e24398ec838d9e49cf115b7e132609a9fb7 (diff) |
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>
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; |