summaryrefslogtreecommitdiff
path: root/libavfilter/af_aformat.c
Commit message (Collapse)AuthorAge
* 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>
* lavu: add av_strtok()Stefano Sabatini2011-10-18
| | | | | | The function strtok_r() is part of the POSIX.1 specification, but is not available on some platforms. We provide an internal implementation, so we do not need to rely on a platform implementation.
* lavfi: rename avfilter_all_* function names to avfilter_make_all_*Stefano Sabatini2011-09-16
| | | | | | | | | | A function name should tell what the function does rather than what the function returns. This also avoids possible conflicts (e.g. between a function and a public list of all supported formats), and clarifies the code. Breaks audio API/ABI, add a backward compatibility layer for video API/ABI.
* af_aformat: use evil ADD_FORMATS macro for cutting out duplicated codeStefano Sabatini2011-08-22
|
* af_format: prefer strtok_r() over strsep()Stefano Sabatini2011-08-16
| | | | | strsep() is not POSIX compliant, and thus not supported on some platform. Fix compilation on Solaris.
* af_aformat: hotfix compile due to strsep()Michael Niedermayer2011-08-15
| | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* lavfi: add aformat filterMina Nagy Zaki2011-08-14
Signed-off-by: Stefano Sabatini <stefano.sabatini-lala@poste.it>