Browse Source

avfilter: add needs_writable field to the internal AVFilterPad structure

tags/n2.2-rc1
Vittorio Giovara 11 years ago
parent
commit
5655732c77
1 changed files with 8 additions and 0 deletions
  1. +8
    -0
      libavfilter/internal.h

+ 8
- 0
libavfilter/internal.h 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



Loading…
Cancel
Save