Commit 48276731 authored by Michael Niedermayer's avatar Michael Niedermayer

Merge commit 'd44bd7fb'

* commit 'd44bd7fb':
  avfilter: add documentation for needs_writable
Merged-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parents 7f2367fb d44bd7fb
...@@ -385,6 +385,12 @@ struct AVFilterPad { ...@@ -385,6 +385,12 @@ struct AVFilterPad {
*/ */
int needs_fifo; int needs_fifo;
/**
* The filter expects writable frames from its input link,
* duplicating data buffers if needed.
*
* input pads only.
*/
int needs_writable; int needs_writable;
}; };
#endif #endif
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment