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:
authorAndreas Rheinhardt <andreas.rheinhardt@gmail.com>2021-03-06 20:08:50 +0300
committerJames Almer <jamrial@gmail.com>2021-04-27 16:43:11 +0300
commit3a370868dc33061a20d1fd99274e65167d7a78ac (patch)
treedd099e999c17371e230677c2e8d6545557a846ff /libavfilter/avfilter.c
parent339af976b6fd9c05d1e75e75a5323efdb3d6afa1 (diff)
avfilter: Remove deprecated avfilter_link_get_channels
Deprecated in b2c42fc6dc3502a8b6cae441c54d898972a51cff. Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com> Signed-off-by: James Almer <jamrial@gmail.com>
Diffstat (limited to 'libavfilter/avfilter.c')
-rw-r--r--libavfilter/avfilter.c7
1 files changed, 0 insertions, 7 deletions
diff --git a/libavfilter/avfilter.c b/libavfilter/avfilter.c
index b3ad8d57b3..c0453be4de 100644
--- a/libavfilter/avfilter.c
+++ b/libavfilter/avfilter.c
@@ -183,13 +183,6 @@ void avfilter_link_free(AVFilterLink **link)
av_freep(link);
}
-#if FF_API_FILTER_GET_SET
-int avfilter_link_get_channels(AVFilterLink *link)
-{
- return link->channels;
-}
-#endif
-
void ff_filter_set_ready(AVFilterContext *filter, unsigned priority)
{
filter->ready = FFMAX(filter->ready, priority);