From 54a48d2f0452deaea4a0cece506b454f29b480ca Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9ment=20B=C5=93sch?= Date: Wed, 31 Oct 2012 20:54:53 +0100 Subject: [PATCH] lavfi: fix references to avfilter_* functions that don't exist anymore. --- libavfilter/avfilter.h | 4 ++-- libavfilter/internal.h | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/libavfilter/avfilter.h b/libavfilter/avfilter.h index 28d4c9d6ae..ccc7f2b7ed 100644 --- a/libavfilter/avfilter.h +++ b/libavfilter/avfilter.h @@ -292,7 +292,7 @@ struct AVFilterPad { /** * Callback function to get a video buffer. If NULL, the filter system will - * use avfilter_default_get_video_buffer(). + * use ff_default_get_video_buffer(). * * Input video pads only. */ @@ -300,7 +300,7 @@ struct AVFilterPad { /** * Callback function to get an audio buffer. If NULL, the filter system will - * use avfilter_default_get_audio_buffer(). + * use ff_default_get_audio_buffer(). * * Input audio pads only. */ diff --git a/libavfilter/internal.h b/libavfilter/internal.h index 8d03913d7e..03dc63d0f1 100644 --- a/libavfilter/internal.h +++ b/libavfilter/internal.h @@ -101,7 +101,7 @@ struct AVFilterPad { /** * Callback function to get a video buffer. If NULL, the filter system will - * use avfilter_default_get_video_buffer(). + * use ff_default_get_video_buffer(). * * Input video pads only. */ @@ -109,7 +109,7 @@ struct AVFilterPad { /** * Callback function to get an audio buffer. If NULL, the filter system will - * use avfilter_default_get_audio_buffer(). + * use ff_default_get_audio_buffer(). * * Input audio pads only. */