diff options
author | Clément Bœsch <ubitux@gmail.com> | 2012-10-31 20:54:53 +0100 |
---|---|---|
committer | Clément Bœsch <ubitux@gmail.com> | 2012-10-31 20:54:59 +0100 |
commit | 54a48d2f0452deaea4a0cece506b454f29b480ca (patch) | |
tree | 2eab73bc604b6042b4520ba0f0787abcb9296bc0 /libavfilter | |
parent | 010f1ce95443a539d3d0405b0b089f245121333a (diff) | |
download | ffmpeg-54a48d2f0452deaea4a0cece506b454f29b480ca.tar.gz |
lavfi: fix references to avfilter_* functions that don't exist anymore.
Diffstat (limited to 'libavfilter')
-rw-r--r-- | libavfilter/avfilter.h | 4 | ||||
-rw-r--r-- | 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. */ |