summaryrefslogtreecommitdiff
path: root/libavfilter/avfilter.h
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2014-01-10 03:34:31 +0100
committerMichael Niedermayer <michaelni@gmx.at>2014-01-10 03:34:52 +0100
commit48276731d604bf0bc28d76e9129c5d52e120d778 (patch)
treeb9d3c18ad9aacf15d182e2d649e2d2095cdf611e /libavfilter/avfilter.h
parent7f2367fb9ec0fe4aad560ca97e8e1885b1ee0fd2 (diff)
parentd44bd7fb27d4121512eae0ffce5e48bac25e82dc (diff)
Merge commit 'd44bd7fb27d4121512eae0ffce5e48bac25e82dc'
* commit 'd44bd7fb27d4121512eae0ffce5e48bac25e82dc': avfilter: add documentation for needs_writable Merged-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavfilter/avfilter.h')
-rw-r--r--libavfilter/avfilter.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/libavfilter/avfilter.h b/libavfilter/avfilter.h
index 3518ad8b3b..ef7e8cadcf 100644
--- a/libavfilter/avfilter.h
+++ b/libavfilter/avfilter.h
@@ -385,6 +385,12 @@ struct AVFilterPad {
*/
int needs_fifo;
+ /**
+ * The filter expects writable frames from its input link,
+ * duplicating data buffers if needed.
+ *
+ * input pads only.
+ */
int needs_writable;
};
#endif