diff options
author | Nicolas George <nicolas.george@normalesup.org> | 2013-03-11 21:49:28 +0100 |
---|---|---|
committer | Nicolas George <nicolas.george@normalesup.org> | 2013-03-12 23:31:07 +0100 |
commit | c14a8c834c0f48e948da688b68f2cd202349adf0 (patch) | |
tree | de1e94cd68d3be13d5204d36d3dddea9a63daae6 /libavfilter/buffersink.c | |
parent | ceac5c54dd3868e33d4e8d6b2d292e65c26368cd (diff) | |
download | ffmpeg-c14a8c834c0f48e948da688b68f2cd202349adf0.tar.gz |
lavfi/buffersink: schedule removing the "ff" variants.
They are no longer needed since there is no incompatible
ABI version.
Diffstat (limited to 'libavfilter/buffersink.c')
-rw-r--r-- | libavfilter/buffersink.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavfilter/buffersink.c b/libavfilter/buffersink.c index 4b9918edcf..8236f22b76 100644 --- a/libavfilter/buffersink.c +++ b/libavfilter/buffersink.c @@ -471,6 +471,7 @@ static int asink_query_formats(AVFilterContext *ctx) return 0; } +#if FF_API_AVFILTERBUFFER static const AVFilterPad ffbuffersink_inputs[] = { { .name = "default", @@ -511,6 +512,7 @@ AVFilter avfilter_asink_ffabuffersink = { .inputs = ffabuffersink_inputs, .outputs = NULL, }; +#endif /* FF_API_AVFILTERBUFFER */ static const AVFilterPad avfilter_vsink_buffer_inputs[] = { { |