summaryrefslogtreecommitdiff
path: root/libavfilter/sink_buffer.c
Commit message (Collapse)AuthorAge
* sink_buffer: copy list of provided formats in the contextStefano Sabatini2011-12-22
| | | | | | | A list of formats may have been dynamically created by the calling code, and thus should not be referenced by the sink buffer context. Avoid possible invalid data reference.
* buffersink: Implement a poll function.Michael Niedermayer2011-12-08
| | | | | | With this the application can find out how many frames are available. Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* Mark AVFilterPad[] compound literals as const.Reimar Döffinger2011-11-06
| | | | | | | GCC 4.6.2 at least still seems to fail to put them in .rodata though, see also http://gcc.gnu.org/bugzilla/show_bug.cgi?id=37303 Signed-off-by: Reimar Döffinger <Reimar.Doeffinger@gmx.de>
* sink_buffer: fix typoMichael Niedermayer2011-09-28
| | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* lavfi: rename vsink_buffer.c to sink_buffer.c, and vsink_buffer.h to ↵Stefano Sabatini2011-09-06
buffersink.h This is done in order to clarify the non-video-specific nature of the buffersink code, as the result of the video/audio API unification of the previous commit, and for improving overall consistency.