From 5655732c77f2df9c1dfbddc30cd4844390a6921f Mon Sep 17 00:00:00 2001 From: Vittorio Giovara Date: Wed, 18 Dec 2013 14:21:25 +0100 Subject: [PATCH] avfilter: add needs_writable field to the internal AVFilterPad structure --- libavfilter/internal.h | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/libavfilter/internal.h b/libavfilter/internal.h index 44e7583..6a752dc 100644 --- a/libavfilter/internal.h +++ b/libavfilter/internal.h @@ -117,6 +117,14 @@ struct AVFilterPad { * input pads only. */ int needs_fifo; + + /** + * The filter expects writable frames from its input link, + * duplicating data buffers if needed. + * + * input pads only. + */ + int needs_writable; }; #endif -- 2.7.4