- 11 Apr, 2013 1 commit
-
-
Anton Khirnov authored
We do not support using filters without AVFilterGraph in practice anyway, so there is no point in pretending we do.
-
- 03 Apr, 2013 1 commit
-
-
Anton Khirnov authored
Avoid snprintfing a NULL pointer. CC: libav-stable@libav.org
-
- 16 Mar, 2013 1 commit
-
-
Anton Khirnov authored
This is more consistent with the naming in the rest of Libav.
-
- 07 Mar, 2013 1 commit
-
-
Reimar Döffinger authored
Make sure the behavior does not change with the locale. Signed-off-by:
Martin Storsjö <martin@martin.st>
-
- 25 Oct, 2012 1 commit
-
-
Janne Grunau authored
Fixes CID700635, CID700636 and CID732274.
-
- 15 Aug, 2012 1 commit
-
-
Martin Storsjö authored
Signed-off-by:
Martin Storsjö <martin@martin.st>
-
- 26 Jun, 2012 1 commit
-
-
Anton Khirnov authored
-
- 13 Jun, 2012 1 commit
-
-
Anton Khirnov authored
This is more consistent with naming in the rest of Libav.
-
- 16 Apr, 2012 1 commit
-
-
Anton Khirnov authored
Prevents it from referring to the rest of the list.
-
- 15 Apr, 2012 1 commit
-
-
Anton Khirnov authored
-
- 14 Apr, 2012 4 commits
-
-
Stefano Sabatini authored
This is required for letting applications to create and destroy AVFilterInOut structs in a convenient way. Signed-off-by:
Anton Khirnov <anton@khirnov.net>
-
Anton Khirnov authored
-
Anton Khirnov authored
Right now, e.g. scale,[in]overlay would connect scale to the first overlay input and [in] to the second, which goes against the documentation and is unintuitive. The bug happens because of the ordering mess in curr_inputs variable: 1) the unlabeled links from the previous filter are added to it in correct order 2) input labels are parsed and inserted to the beginning one by one (i.e. in reverse order) 3) curr_inputs is matched against filter inputs in reverse order Fix the problem by always using proper ordering without trying to be clever.
-
Anton Khirnov authored
Unlike avfilter_graph_parse(), it returns unlinked inputs and outputs to the caller, which allows parsing of graphs where inputs/outputs are not known in advance.
-
- 28 Sep, 2011 2 commits
-
-
Stefano Sabatini authored
Require "void *" rather than "AVClass *" for the log context type. Signed-off-by:
Anton Khirnov <anton@khirnov.net>
-
Stefano Sabatini authored
Signed-off-by:
Anton Khirnov <anton@khirnov.net>
-
- 14 Jul, 2011 1 commit
-
-
Diego Biurrun authored
-
- 03 Jul, 2011 1 commit
-
-
Diego Biurrun authored
-
- 25 Apr, 2011 1 commit
-
-
Stefano Sabatini authored
Fix crash in create_filter() which occurrs if a scale filter with no args is provided. Signed-off-by:
Anton Khirnov <anton@khirnov.net>
-
- 19 Mar, 2011 1 commit
-
-
Mans Rullgard authored
Signed-off-by:
Mans Rullgard <mans@mansr.com>
-
- 04 Feb, 2011 1 commit
-
-
Stefano Sabatini authored
Make avfilter_graph_parse() only release the internal structures allocated during the parsing, and leave to free the graph itself to the calling code. This approach looks cleaner, as the graph is not allocated by the function. Signed-off-by:
Mans Rullgard <mans@mansr.com>
-
- 14 Jan, 2011 1 commit
-
-
Stefano Sabatini authored
Originally committed as revision 26334 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
- 12 Dec, 2010 1 commit
-
-
Stefano Sabatini authored
invalid filterchain is detected. Originally committed as revision 25936 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
- 28 Nov, 2010 1 commit
-
-
Stefano Sabatini authored
headers. Originally committed as revision 25838 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
- 17 Nov, 2010 1 commit
-
-
Aurelien Jacobs authored
Originally committed as revision 25761 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
- 11 Nov, 2010 1 commit
-
-
Stefano Sabatini authored
each specified output link label. Fix crash. Originally committed as revision 25723 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
- 08 Nov, 2010 1 commit
-
-
Stefano Sabatini authored
The new name is shorter and more consistent with the FFmpeg API, and sounds less evil. Originally committed as revision 25707 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
- 07 Nov, 2010 12 commits
-
-
Stefano Sabatini authored
avfilter_graph_parse() declaration to libavfilter/avfiltergraph.h. Simplify, and less confusing for the user. Originally committed as revision 25705 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
Stefano Sabatini authored
Originally committed as revision 25703 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
Stefano Sabatini authored
Originally committed as revision 25700 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
Stefano Sabatini authored
Originally committed as revision 25699 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
Stefano Sabatini authored
Originally committed as revision 25698 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
Stefano Sabatini authored
Originally committed as revision 25697 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
Stefano Sabatini authored
link label parsed by parse_link_name() is invalid. Originally committed as revision 25696 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
Stefano Sabatini authored
Originally committed as revision 25695 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
Stefano Sabatini authored
Rename the variable filter to filt_ctx in link_filter_inouts, as the variable denotes a filter context. Less confusing. Originally committed as revision 25694 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
Stefano Sabatini authored
Originally committed as revision 25693 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
Stefano Sabatini authored
Originally committed as revision 25692 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
Stefano Sabatini authored
Originally committed as revision 25691 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
- 04 Nov, 2010 1 commit
-
-
Stefano Sabatini authored
The new name is shorter and more consistent with the rest of the API. This change breaks libavfilter API/ABI. Originally committed as revision 25674 to svn://svn.ffmpeg.org/ffmpeg/trunk
-