summaryrefslogtreecommitdiff
path: root/avconv.h
Commit message (Collapse)AuthorAge
* avconv: stop accessing AVStream.parserAnton Khirnov2013-10-29
| | | | It is private and must not be touched from outside of lavf.
* avplay: Accept cpuflags optionLuca Barbato2013-10-22
| | | | | | Quite useful for debugging. Signed-off-by: Luca Barbato <lu_zero@gentoo.org>
* avconv: support -t as an input option.Anton Khirnov2013-08-05
| | | | It limits the duration of the data read from a given input.
* avconv: make input -ss accurate when transcodingAnton Khirnov2013-08-05
| | | | | Insert (a)trim filters on the corresponding inputs, so the extra frames are decoded and discarded.
* avconv: do not send non-monotonous DTS to the muxers.Anton Khirnov2013-05-03
| | | | | Hack partially based on a commit by Michael Niedermayer <michaelni@gmx.at> Should fix (or work around) bug 458.
* lavfi: merge avfiltergraph.h into avfilter.hAnton Khirnov2013-04-11
| | | | | We do not support using filters without AVFilterGraph in practice anyway, so there is no point in pretending we do.
* avconv: add options for reading filtergraphs from a file.Anton Khirnov2013-03-28
|
* avconv: convert to new refcounted AVFrame APIAnton Khirnov2013-03-08
|
* avconv: pass libavresample options to AVFilterGraphJustin Ruggles2013-02-23
|
* avconv: use new options parser.Anton Khirnov2012-12-18
|
* De-doxygenize some top-level filesDiego Biurrun2012-10-12
|
* avconv: remove -same_quantAnton Khirnov2012-10-09
| | | | | | | 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.
* Replace PIX_FMT_* -> AV_PIX_FMT_*, PixelFormat -> AVPixelFormatAnton Khirnov2012-10-08
|
* avtools: remove the distinction between func_arg and func2_arg.Anton Khirnov2012-08-30
| | | | | | 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).
* avconv: make the -passlogfile option per-stream.Anton Khirnov2012-08-30
|
* avconv: make the -pass option per-stream.Anton Khirnov2012-08-30
|
* avconv: make -shortest a per-output file option.Anton Khirnov2012-08-18
|
* avconv: rename OutputStream.is_past_recording_time to finished.Anton Khirnov2012-08-08
| | | | | The new name is shorter and more accurate, since this variable is no longer used only for checking recording time constraint.
* avconv: replace no_packet array in transcode() with a var in InputStreamAnton Khirnov2012-08-08
| | | | | This simplifies splitting code for reading from input out of transcode().
* avconv: remove unused variable from InputFile.Anton Khirnov2012-08-08
|
* avconv: split configuring filter configuration to a separate file.Anton Khirnov2012-08-08
|
* avconv: split option parsing into a separate file.Anton Khirnov2012-08-08