summaryrefslogtreecommitdiff
path: root/libavfilter
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2014-01-10 03:36:42 +0100
committerMichael Niedermayer <michaelni@gmx.at>2014-01-10 03:37:03 +0100
commit8788d316062e8afe456123a00c594e598fa80408 (patch)
treeceeefaf17b1741ae13c739d64bd8ac9c8c32d61a /libavfilter
parent48276731d604bf0bc28d76e9129c5d52e120d778 (diff)
parent5655732c77f2df9c1dfbddc30cd4844390a6921f (diff)
Merge commit '5655732c77f2df9c1dfbddc30cd4844390a6921f'
* commit '5655732c77f2df9c1dfbddc30cd4844390a6921f': avfilter: add needs_writable field to the internal AVFilterPad structure Merged-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavfilter')
-rw-r--r--libavfilter/internal.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/libavfilter/internal.h b/libavfilter/internal.h
index 5e19698d07..308b115b89 100644
--- a/libavfilter/internal.h
+++ b/libavfilter/internal.h
@@ -141,6 +141,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