Browse Source

sink_buffer: fix #ifs for FF-sinks

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
tags/n1.0
Michael Niedermayer 13 years ago
parent
commit
172161c8db
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      libavfilter/sink_buffer.c

+ 2
- 2
libavfilter/sink_buffer.c View File

@@ -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 = {


#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)
{ {


Loading…
Cancel
Save