summaryrefslogtreecommitdiff
path: root/libavfilter/af_join.c
Commit message (Collapse)AuthorAge
* Don't include common.h from avutil.hMartin Storsjö2012-08-15
| | | | Signed-off-by: Martin Storsjö <martin@martin.st>
* lavfi: use avfilter_unref_bufferp() where appropriate.Anton Khirnov2012-07-22
|
* lavfi: add error handling to filter_samples().Anton Khirnov2012-07-09
|
* af_join: initialize a variable to shut up gcc warning.Anton Khirnov2012-06-26
| | | | | | The warning silenced was: libavfilter/af_join.c: In function ‘join_request_frame’: libavfilter/af_join.c:451:9: warning: ‘nb_samples’ may be used uninitialized in this function [-Wuninitialized]
* lavfi: remove 'opaque' parameter from AVFilter.init()Anton Khirnov2012-06-26
| | | | | | It is not used in any filters currently and is inherently evil. If passing binary data to filters is required in the future, it should be done with some AVOptions-based system.
* lavfi: add join audio filter.Anton Khirnov2012-06-22
It joins multiple input streams into one multi-channel output.