Commit 172161c8 authored by Michael Niedermayer's avatar Michael Niedermayer

sink_buffer: fix #ifs for FF-sinks

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 9dcc4c30
...@@ -188,7 +188,7 @@ int av_buffersink_poll_frame(AVFilterContext *ctx) ...@@ -188,7 +188,7 @@ int av_buffersink_poll_frame(AVFilterContext *ctx)
return av_fifo_size(buf->fifo)/sizeof(AVFilterBufferRef *) + ff_poll_frame(inlink); return av_fifo_size(buf->fifo)/sizeof(AVFilterBufferRef *) + ff_poll_frame(inlink);
} }
#if CONFIG_BUFFERSINK_FILTER #if CONFIG_BUFFERSINK_FILTER || CONFIG_FFBUFFERSINK_FILTER
static av_cold int vsink_init(AVFilterContext *ctx, const char *args, void *opaque) static av_cold int vsink_init(AVFilterContext *ctx, const char *args, void *opaque)
{ {
...@@ -261,7 +261,7 @@ AVFilter avfilter_vsink_buffersink = { ...@@ -261,7 +261,7 @@ AVFilter avfilter_vsink_buffersink = {
#endif /* CONFIG_BUFFERSINK_FILTER */ #endif /* CONFIG_BUFFERSINK_FILTER */
#if CONFIG_ABUFFERSINK_FILTER #if CONFIG_ABUFFERSINK_FILTER || CONFIG_FFABUFFERSINK_FILTER
static int filter_samples(AVFilterLink *link, AVFilterBufferRef *samplesref) static int filter_samples(AVFilterLink *link, AVFilterBufferRef *samplesref)
{ {
......
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