Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2011-03-06 22:08:30 +0300
committerMichael Niedermayer <michaelni@gmx.at>2011-03-08 04:09:34 +0300
commitf8bc86d47e8997b9e78e26a90f3884ffe9b55f5e (patch)
tree74d52937c107df54c03a11ed98fd24b7dca3d61c /libavformat/utils.c
parent718975aa111bc41deac0d432a7749d0aee6ef7a0 (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> (cherry picked from commit f1ef2cd9ed22be231bb4da8d2f93d9a0c7877aa7)
Diffstat (limited to 'libavformat/utils.c')
-rw-r--r--libavformat/utils.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/libavformat/utils.c b/libavformat/utils.c
index 25c600ab0e..c38c9ca729 100644
--- a/libavformat/utils.c
+++ b/libavformat/utils.c
@@ -19,6 +19,7 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#include "avformat.h"
+#include "avio_internal.h"
#include "internal.h"
#include "libavcodec/internal.h"
#include "libavutil/opt.h"
@@ -585,7 +586,7 @@ int av_probe_input_buffer(AVIOContext *pb, AVInputFormat **fmt,
}
/* rewind. reuse probe buffer to avoid seeking */
- if ((ret = ff_rewind_with_probe_data(pb, buf, pd.buf_size)) < 0)
+ if ((ret = ffio_rewind_with_probe_data(pb, buf, pd.buf_size)) < 0)
av_free(buf);
return ret;