summaryrefslogtreecommitdiff
path: root/libavfilter/vf_split.c
Commit message (Collapse)AuthorAge
* lavfi: rename vf_split.c -> f_split.cStefano Sabatini2012-05-19
| | | | The file now contains both an audio and a video split filter.
* lavfi/asplit: move asplit code to vf_split.c, and make it support N outputsStefano Sabatini2012-05-19
| | | | The move allows to share the init code already used by split.
* Merge remote-tracking branch 'qatar/master'Michael Niedermayer2012-05-06
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * qatar/master: (28 commits) dfa: use more meaningful return codes eatgv: check vector_bits eatgv: check motion vectors Mark a number of variables only used in av_dlog() calls as av_unused. dvdec: drop const qualifier from variable to eliminate a warning avcodec: Improve comment for thread_safe_callbacks to avoid misinterpretation. tests/utils: don't ignore the return value of fwrite() lavfi/formats: use sizeof(var) instead of sizeof(type). lavfi: remove avfilter_default_config_input_link() declaration lavfi: always enable the scale filter and depend on sws. vf_split: support user-specifiable number of outputs. avconv: remove stray useless comment. mpegmux: add stuffing to avoid incomplete PCM frames rtsp: avoid const warnings from strtol() call avserver: check return value of ftruncate() lagarith: make offset array type unsigned dfa: add some checks to ensure that decoder won't write past frame end aacps: NEON optimisations aacps: align some arrays aacps: move some loops to function pointers ... Conflicts: configure doc/filters.texi libavcodec/dfa.c libavcodec/eatgv.c libavfilter/Makefile libavfilter/allfilters.c libavfilter/avfilter.h libavfilter/formats.c libavfilter/vf_split.c Merged-by: Michael Niedermayer <michaelni@gmx.at>
| * vf_split: support user-specifiable number of outputs.Anton Khirnov2012-05-06
| |
| * lavfi: add split filter from soc.Bobby Bingham2011-09-12
| | | | | | | Some fixes by Stefano. For detailed authorship see SOC repo Signed-off-by: Anton Khirnov <anton@khirnov.net>
* 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>
* vf_split: give more meaningful names to the output padsStefano Sabatini2011-05-22
| | | | Rename "default" -> "output1", "default2" -> output2.
* vf_split: define draw_slice() before end_frame()Stefano Sabatini2011-05-22
| | | | Improve logical coherence, fix nit.
* vf_split: add descriptionStefano Sabatini2011-05-22
|
* vf_split: fix various nitsStefano Sabatini2011-05-22
|
* libavfilter: vf_split from soc.Bobby Bingham2011-05-21
Commited by michael, for detailed authorship see soc repo