Browse code

avfilter: add needs_writable field to the internal AVFilterPad structure

Vittorio Giovara authored on 2013/12/18 22:21:25
Showing 1 changed files
... ...
@@ -117,6 +117,14 @@ struct AVFilterPad {
117 117
      * input pads only.
118 118
      */
119 119
     int needs_fifo;
120
+
121
+    /**
122
+     * The filter expects writable frames from its input link,
123
+     * duplicating data buffers if needed.
124
+     *
125
+     * input pads only.
126
+     */
127
+    int needs_writable;
120 128
 };
121 129
 #endif
122 130