Commit 54a48d2f authored by Clément Bœsch's avatar Clément Bœsch

lavfi: fix references to avfilter_* functions that don't exist anymore.

parent 010f1ce9
...@@ -292,7 +292,7 @@ struct AVFilterPad { ...@@ -292,7 +292,7 @@ struct AVFilterPad {
/** /**
* Callback function to get a video buffer. If NULL, the filter system will * 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. * Input video pads only.
*/ */
...@@ -300,7 +300,7 @@ struct AVFilterPad { ...@@ -300,7 +300,7 @@ struct AVFilterPad {
/** /**
* Callback function to get an audio buffer. If NULL, the filter system will * 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. * Input audio pads only.
*/ */
......
...@@ -101,7 +101,7 @@ struct AVFilterPad { ...@@ -101,7 +101,7 @@ struct AVFilterPad {
/** /**
* Callback function to get a video buffer. If NULL, the filter system will * 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. * Input video pads only.
*/ */
...@@ -109,7 +109,7 @@ struct AVFilterPad { ...@@ -109,7 +109,7 @@ struct AVFilterPad {
/** /**
* Callback function to get an audio buffer. If NULL, the filter system will * 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. * Input audio pads only.
*/ */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment