summaryrefslogtreecommitdiff
path: root/avconv.c
Commit message (Collapse)AuthorAge
...
* avconv: move metadata to options context.Anton Khirnov2011-09-05
| | | | It is now possible to set metadata on streams and chapters.
* avconv: move ts scale to options context.Anton Khirnov2011-09-05
|
* avconv: move chapter maps to options context.Anton Khirnov2011-09-05
|
* avconv: move metadata maps to options context.Anton Khirnov2011-09-05
|
* avconv: move codec_names to options context.Anton Khirnov2011-09-05
|
* avconv: move format to options contextAnton Khirnov2011-09-04
|
* avconv: move limit_filesize to options contextAnton Khirnov2011-09-04
|
* avconv: move start_time, recording_time and input_ts_offset to options contextAnton Khirnov2011-09-04
|
* avconv: add a context for options.Anton Khirnov2011-09-04
| | | | | | Move stream maps to it. Eventually all non-global options should be stored in it.
* cmdutils: add support for caller-provided option context.Anton Khirnov2011-09-04
| | | | This is the first step to removing the globals plague from avtools.
* cmdutils: move grow_array() from avconv to cmdutils.Anton Khirnov2011-09-04
|
* cmdutils: move exit_program() declaration to cmdutils from avconvAnton Khirnov2011-09-04
| | | | Allows cmdutils to call each tool's own cleanup function.
* cmdutils: get rid of dummy contexts for examining AVOptions.Anton Khirnov2011-09-03
| | | | Replace it with newly introduced libavutil API.
* avconv: fix some bugs introduced in 630902a1e1336e7ee0cf3dcbcb6eb07af8edf660Michael Niedermayer2011-09-01
| | | | | | | | | These caused scrambled error messages to be printed and floating point exceptions. For example when there was no decoder available for a stream. Signed-off-by: Anton Khirnov <anton@khirnov.net>
* avconv: remove -threads option.Anton Khirnov2011-08-30
| | | | It's only shadowing the AVOption with the same name.
* avconv: Replace raw picture frame swapping hack.Alex Converse2011-08-30
|
* avconv: remove stubs of crop* and pad* optionsAnton Khirnov2011-08-29
|
* avconv: re-add nb_streams to InputFile.Anton Khirnov2011-08-29
| | | | | | | | It was mistakenly removed in 2cf8355f98681bdd726b739008acd5483f82f8d7, not taking into account that new streams might appear in av_read_frame() that avconv doesn't know about. Fixes bug 24.
* doxygen: fix wrong comment syntax, //< vs. ///<Diego Biurrun2011-08-26
|
* avconv: Replace goto redo on decode fail with continue.Alex Converse2011-08-24
| | | | | This checks for sigterm but otherwise is identical to the previous behavior.
* avconv: Remove dead store.Alex Converse2011-08-24
|
* avconv: use av_clip_int16 for audio clippingAlex Converse2011-08-23
|
* avconv: print the codecs names in the stream mapping.Nicolas George2011-08-23
| | | | Signed-off-by: Anton Khirnov <anton@khirnov.net>
* avconv: move the avcodec_find_decoder() call to add_input_streams().Anton Khirnov2011-08-23
| | | | | | This makes the code simpler to understand, though it results in an unnecessary call to avcodec_find_decoder() if the stream won't be decoded.
* avconv: Separate initialization from the main transcode loop.Alex Converse2011-08-19
|
* avconv: reset input_ts_offset between files.Anton Khirnov2011-08-19
| | | | Signed-off-by: Alex Converse <alex.converse@gmail.com>
* avconv: call flush_encoders() from transcode() directly.Anton Khirnov2011-08-19
| | | | | | And remove now pointless parameter. Signed-off-by: Alex Converse <alex.converse@gmail.com>
* avconv: fix broken indentation.Anton Khirnov2011-08-19
| | | | Signed-off-by: Alex Converse <alex.converse@gmail.com>
* avconv: rescue poor abused limit_filesize global.Anton Khirnov2011-08-19
| | | | | | | Keep a per-OutputFile instance of it, thus making -fs work with multiple output files. Signed-off-by: Alex Converse <alex.converse@gmail.com>
* avconv: Set error code before before jumping to fail.Alex Converse2011-08-19
|
* avconv: Fix spelling errors.Alex Converse2011-08-18
| | | | Signed-off-by: Luca Barbato <lu_zero@gentoo.org>
* avconv: save two levels of indentation in flush_encoders()Anton Khirnov2011-08-18
| | | | | | | | | | | By replacing if (foo) <do stuff> with if (!foo) continue; <do stuff>
* avconv: factor flushing encoders out of output_packet().Anton Khirnov2011-08-18
|
* avconv: factor out initializing input streams.Anton Khirnov2011-08-18
|
* avconv: remove -intra option.Anton Khirnov2011-08-18
| | | | It's equivalent to -g 0.
* avconv: reset streamid_map between output files.Anton Khirnov2011-08-18
|
* avconv: make timer_start a local var in transcode().Anton Khirnov2011-08-18
|
* avconv: cosmetics, move OutputStream.Anton Khirnov2011-08-18
| | | | Allows us to get rid of forward InputStream declaration.
* avconv: remove two unused macros.Anton Khirnov2011-08-18
|
* avconv: reindent.Anton Khirnov2011-08-17
|
* avconv: rescue poor abused start_time global.Anton Khirnov2011-08-17
| | | | | Keep a per-OutputFile instance of it, thus making -ss work with multiple output files.
* avconv: rescue poor abused recording_time global.Anton Khirnov2011-08-17
| | | | | Keep a per-OutputFile instance of it, thus making -t work with multiple output files.
* avconv: merge two loops in output_packet().Anton Khirnov2011-08-17
|
* avconv: fix broken indentation.Anton Khirnov2011-08-17
|
* avconv: get rid of the arbitrary MAX_FILES limit.Anton Khirnov2011-08-17
|
* avconv: get rid of the output_streams_for_file vs. ost_table schizophreniaAnton Khirnov2011-08-17
| | | | Instead store output streams in the same way as input streams.
* avconv: add a wrapper for output AVFormatContexts and merge output_opts into itAnton Khirnov2011-08-17
|
* avconv: make itsscale syntax consistent with other options.Anton Khirnov2011-08-17
| | | | Move the stream specifier to the option name.
* avconv: factor out adding input streams.Anton Khirnov2011-08-17
|
* avconv: Factorize combining auto vsync with format.Alex Converse2011-08-17
|