1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2024-11-26 19:01:44 +02:00

avfilter: add needs_writable field to the internal AVFilterPad structure

This commit is contained in:
Vittorio Giovara 2013-12-18 14:21:25 +01:00
parent d44bd7fb27
commit 5655732c77

View File

@ -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