]> git.sesse.net Git - ffmpeg/commitdiff
avfilter: add documentation for needs_writable
authorVittorio Giovara <vittorio.giovara@gmail.com>
Wed, 18 Dec 2013 10:40:38 +0000 (11:40 +0100)
committerVittorio Giovara <vittorio.giovara@gmail.com>
Thu, 9 Jan 2014 22:13:05 +0000 (23:13 +0100)
libavfilter/avfilter.h

index 9f14afdbc57cd07f5b6bc5cc721cd96cf407e361..1b42086611f31dcd5b2e46a6e2b80077e75b48a0 100644 (file)
@@ -358,6 +358,12 @@ struct AVFilterPad {
      */
     int needs_fifo;
 
+    /**
+     * The filter expects writable frames from its input link,
+     * duplicating data buffers if needed.
+     *
+     * input pads only.
+     */
     int needs_writable;
 };
 #endif