diff options
author | Vittorio Giovara <vittorio.giovara@gmail.com> | 2013-12-18 14:21:25 +0100 |
---|---|---|
committer | Vittorio Giovara <vittorio.giovara@gmail.com> | 2014-01-09 23:13:05 +0100 |
commit | 5655732c77f2df9c1dfbddc30cd4844390a6921f (patch) | |
tree | 8ac1451bc778498b1ecd6f7eed195975e647b681 | |
parent | d44bd7fb27d4121512eae0ffce5e48bac25e82dc (diff) | |
download | ffmpeg-5655732c77f2df9c1dfbddc30cd4844390a6921f.tar.gz |
avfilter: add needs_writable field to the internal AVFilterPad structure
-rw-r--r-- | libavfilter/internal.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/libavfilter/internal.h b/libavfilter/internal.h index 44e75832d0..6a752dc7e4 100644 --- a/libavfilter/internal.h +++ b/libavfilter/internal.h @@ -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 |