[FFmpeg-cvslog] sink_buffer: fix #ifs for FF-sinks
Michael Niedermayer
git at videolan.org
Tue Sep 4 19:02:17 CEST 2012
ffmpeg | branch: master | Michael Niedermayer <michaelni at gmx.at> | Tue Sep 4 18:49:05 2012 +0200| [172161c8dbae01e33950dec9d87d1cfb248ec71f] | committer: Michael Niedermayer
sink_buffer: fix #ifs for FF-sinks
Signed-off-by: Michael Niedermayer <michaelni at gmx.at>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=172161c8dbae01e33950dec9d87d1cfb248ec71f
---
libavfilter/sink_buffer.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/libavfilter/sink_buffer.c b/libavfilter/sink_buffer.c
index 0b685e3..040fbaf 100644
--- a/libavfilter/sink_buffer.c
+++ b/libavfilter/sink_buffer.c
@@ -188,7 +188,7 @@ int av_buffersink_poll_frame(AVFilterContext *ctx)
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)
{
@@ -261,7 +261,7 @@ AVFilter avfilter_vsink_buffersink = {
#endif /* CONFIG_BUFFERSINK_FILTER */
-#if CONFIG_ABUFFERSINK_FILTER
+#if CONFIG_ABUFFERSINK_FILTER || CONFIG_FFABUFFERSINK_FILTER
static int filter_samples(AVFilterLink *link, AVFilterBufferRef *samplesref)
{
More information about the ffmpeg-cvslog
mailing list