Commit 5655732c authored by Vittorio Giovara's avatar Vittorio Giovara

avfilter: add needs_writable field to the internal AVFilterPad structure

parent d44bd7fb
...@@ -117,6 +117,14 @@ struct AVFilterPad { ...@@ -117,6 +117,14 @@ struct AVFilterPad {
* input pads only. * input pads only.
*/ */
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;
}; };
#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