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

github.com/mpc-hc/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
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-28avconv: add options for reading filtergraphs from a file.Anton Khirnov
2013-03-08avconv: convert to new refcounted AVFrame APIAnton Khirnov
2013-02-24avconv: pass libavresample options to AVFilterGraphJustin Ruggles
2012-12-18avconv: use new options parser.Anton Khirnov
2012-10-12De-doxygenize some top-level filesDiego Biurrun
2012-10-09avconv: remove -same_quantAnton Khirnov
It has not worked for anything other than fringe codecs (asv1/2, mdec, mjpeg[b]) since about 2003 and nobody ever noticed or complained. This sufficiently proves that there are no users of this option who have a clue of what they are doing, so it is completely useless.
2012-10-08Replace PIX_FMT_* -> AV_PIX_FMT_*, PixelFormat -> AVPixelFormatAnton Khirnov
2012-08-30avtools: remove the distinction between func_arg and func2_arg.Anton Khirnov
func2_arg is the same as func_arg, except it has one additional parameter. Change all func_arg callbacks to take that parameter (and ignore it).
2012-08-30avconv: make the -passlogfile option per-stream.Anton Khirnov
2012-08-30avconv: make the -pass option per-stream.Anton Khirnov
2012-08-18avconv: make -shortest a per-output file option.Anton Khirnov
2012-08-08avconv: rename OutputStream.is_past_recording_time to finished.Anton Khirnov
The new name is shorter and more accurate, since this variable is no longer used only for checking recording time constraint.
2012-08-08avconv: replace no_packet array in transcode() with a var in InputStreamAnton Khirnov
This simplifies splitting code for reading from input out of transcode().
2012-08-08avconv: remove unused variable from InputFile.Anton Khirnov
2012-08-08avconv: split configuring filter configuration to a separate file.Anton Khirnov
2012-08-08avconv: split option parsing into a separate file.Anton Khirnov