Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2015-10-07avconv: Do not try to configure filter outputs without streamsLuca Barbato
Prevent a NULL-dereference. CC: libav-stable@libav.org
2015-09-13avconv_filter: Use full named optionsVittorio Giovara
This introduces a slight timebase computation difference in zmbv-8bit fate test. This is expected since the new options are double instead of ints, and the additional precision skews the results in a non meaningful way.
2015-07-19avconv: split creating and (re-)configuring complex filtergraphsAnton Khirnov
The current code is less than straightforward due to the fact that output streams can be created based on filtergraph definitions. This change should make the code simpler and more readable. It will also be useful in the future commits.
2015-05-02avconv: Add an option for automatically rotating video according to display ↵Martin Storsjö
matrix The option is enabled by default, but can be disabled. If this is enabled, such side data isn't copied into the output stream (except when doing stream copy). Signed-off-by: Martin Storsjö <martin@martin.st>
2014-10-17avconv: fix leak in filter errorVittorio Giovara
CC: libav-stable@libav.org Bug-Id: CID 1005311
2014-06-01avconv: do not use the stream codec context for encodingAnton Khirnov
2014-06-01avconv: do not use the stream codec context for decodingAnton Khirnov
2013-11-24Add missing #includes for *INT64_MAX and *INT64_CDiego Biurrun
2013-11-23avconv: add infrastructure for using hwaccelsAnton Khirnov
2013-11-21avconv_filter: add new line after error messageVittorio Giovara
2013-08-05avconv: support -t as an input option.Anton Khirnov
It limits the duration of the data read from a given input.
2013-08-05avconv: make input -ss accurate when transcodingAnton Khirnov
Insert (a)trim filters on the corresponding inputs, so the extra frames are decoded and discarded.
2013-08-05avconv: distinguish between -ss 0 and -ss not being usedAnton Khirnov
Using -ss 0 to drop frames with negative timestamps is a perfectly valid use case.
2013-08-05avconv: insert extra filters in the same way for both graph inputs and outputsAnton Khirnov
This will allow using the same code when one filter can be inserted both on input and output.
2013-08-05avconv: fix usage of deprecated lavfi APIAnton Khirnov
2013-08-04avconv: improve some variable namesAnton Khirnov
'filter' is too generic, since the functions in question deal with several filters. Also add const qualifiers to those variables.
2013-05-10avconv: use current syntax for the scale filterLuca Barbato
2013-04-30avconv: make output -ss insert trim/atrim filters.Anton Khirnov
This makes output -ss sample-accurate for audio and will allow further simplication in the future.
2013-04-30avconv: make -t insert trim/atrim filters.Anton Khirnov
This makes -t sample-accurate for audio and will allow further simplication in the future. Most of the FATE changes are due to audio now being sample accurate. In some cases a video frame was incorrectly passed with the old code, while its was over the limit.
2013-04-11avconv: update to the new options syntax.Anton Khirnov
The separators were changed from ',' to '|' in all the filters.
2013-04-11lavfi: merge avfiltergraph.h into avfilter.hAnton Khirnov
We do not support using filters without AVFilterGraph in practice anyway, so there is no point in pretending we do.
2013-03-06avconv: Make sure the encoder exists before inspecting supported_listMartin Storsjö
This fixes crashes when there is no encoder for the default codec of selected format. Signed-off-by: Martin Storsjö <martin@martin.st>
2013-02-26avconv: remove an unused variableJustin Ruggles
2013-02-24avconv: pass libavresample options to AVFilterGraphJustin Ruggles
2012-12-18cmdutils: add a macro to simplify grow_array() calls.Anton Khirnov
2012-12-05avconv: deprecate the -vol optionJustin Ruggles
Remove the code for volume scaling in avconv.c and instead auto-insert a volume filter into the beginning of the filter chain.
2012-11-29avconv: fix variable shadowing in configure_input_audio_filter()Justin Ruggles
2012-11-11Include libavutil/channel_layout.h instead of libavutil/audioconvert.hJustin Ruggles
Also reorder some other #include when applicable.
2012-10-12De-doxygenize some top-level filesDiego Biurrun
2012-10-08Replace PIX_FMT_* -> AV_PIX_FMT_*, PixelFormat -> AVPixelFormatAnton Khirnov
2012-10-02Use atexit() instead of defining a custom exit_program() interface.Diego Elio Pettenò
2012-09-17avconv: don't pass a bogus parameter to avfilter_graph_create_filter().Anton Khirnov
The buffer sink does not take any parameters. Fixes an uninitialized variable warning.
2012-08-19cmdutils: extend -h to allow printing codec details.Anton Khirnov
2012-08-08avconv: split configuring filter configuration to a separate file.Anton Khirnov