diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2014-01-10 03:36:42 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2014-01-10 03:37:03 +0100 |
commit | 8788d316062e8afe456123a00c594e598fa80408 (patch) | |
tree | ceeefaf17b1741ae13c739d64bd8ac9c8c32d61a | |
parent | 48276731d604bf0bc28d76e9129c5d52e120d778 (diff) | |
parent | 5655732c77f2df9c1dfbddc30cd4844390a6921f (diff) | |
download | ffmpeg-8788d316062e8afe456123a00c594e598fa80408.tar.gz |
Merge commit '5655732c77f2df9c1dfbddc30cd4844390a6921f'
* commit '5655732c77f2df9c1dfbddc30cd4844390a6921f':
avfilter: add needs_writable field to the internal AVFilterPad structure
Merged-by: Michael Niedermayer <michaelni@gmx.at>
-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 5e19698d07..308b115b89 100644 --- a/libavfilter/internal.h +++ b/libavfilter/internal.h @@ -141,6 +141,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 |