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
2017-02-21build: Move cli tool sources to a separate subdirectoryDiego Biurrun
This unclutters the top-level directory and groups related files together.
2017-01-02cmdutils: update copyright year to 2017Sean McGovern
CC: libav-stable@libav.org
2016-03-20avconv: switch to the new BSF APIAnton Khirnov
2016-03-15cmdutils: update copyright year to 2016Sean McGovern
CC: libav-stable@libav.org Signed-off-by: Luca Barbato <lu_zero@gentoo.org>
2016-02-23avconv: convert to codecparAnton Khirnov
The switch is not yet complete because the parsers and the bistream filters do not have a new AVCodecParam-based API yet.
2015-10-26cmdutils: Check for and report the correct codec capabilityVittorio Giovara
2015-10-15cmdutils: Print general codec capabilitiesVittorio Giovara
2015-10-15cmdutils: Add auto to threading capabilities reportVittorio Giovara
And use 'none' when such capabilities are not set. Signed-off-by: Vittorio Giovara <vittorio.giovara@gmail.com>
2015-07-27lavc: AV-prefix all codec capabilitiesVittorio Giovara
Express bitfields more simply. Signed-off-by: Vittorio Giovara <vittorio.giovara@gmail.com>
2015-07-19avconv: use read_file() for reading the 2pass statsAnton Khirnov
Also, drop the now unused cmdutils_read_file(). There is no reason to have two functions doing essentially the same thing.
2015-07-03lavu: add an API function to return the Libav version stringwm4
This returns something like "v12_dev0-1332-g333a27c". This is much more useful than the individual library versions, of which there are too many, and which are very hard to map back to releases or git commits. Signed-off-by: Janne Grunau <janne-libav@jannau.net>
2015-04-19log: Introduce a more verbose debug levelVittorio Giovara
And deprecate av_dlog macro.
2015-03-20cmdutils: Add a stream specifier to map usable streamsLuca Barbato
It drops everything that cannot be used for re-encoding and/or streamcopy.
2015-01-04cmdutils: update copyright year to 2015.Johan Andersson
Signed-off-by: Martin Storsjö <martin@martin.st>
2014-12-19check memory errors from av_strdup()Vittorio Giovara
2014-12-19cmdutils: check file access functions return valuesVittorio Giovara
CC: libav-stable@libav.org Bug-Id: CID 703706
2014-10-17cmdutils: Use the correct guardLuca Barbato
The OptionDef arrays are terminated with a { NULL } element not NULL. CC: libav-stable@libav.org Bug-Id: CID 703769
2014-09-16cmdutils: Print a more sensible message in show_filters() w/o libavfilterDiego Biurrun
Also avoid an unused variable warning for compilers w/o av_unused support.
2014-08-15cosmetics: Write NULL pointer inequality checks more compactlyGabriel Dume
Signed-off-by: Diego Biurrun <diego@biurrun.de>
2014-08-15cosmetics: Write NULL pointer equality checks more compactlyGabriel Dume
Signed-off-by: Diego Biurrun <diego@biurrun.de>
2014-08-13cmdutils: allow matching by metadata in stream specifiersAnton Khirnov
2014-03-13avconv: Match stream idLuca Barbato
Quite useful to select by pid in MPEG-TS.
2014-01-06cmdutils: update copyright year to 2014.Johan Andersson
Signed-off-by: Martin Storsjö <martin@martin.st>
2013-11-24Add missing #includes for *INT64_MAX and *INT64_CDiego Biurrun
2013-10-22avplay: Accept cpuflags optionLuca Barbato
Quite useful for debugging. Signed-off-by: Luca Barbato <lu_zero@gentoo.org>
2013-08-08cmdutils: Only do the windows-specific commandline parsing on _WIN32Diogo Franco
Fixes commandline parsing on Cygwin (on 64 bit, and on very recent 32 bit), where the configure check does find the CommandLineToArgvW function (since it exists in the link libraries and in the headers), but whose GetCommandLineW() only returns the application's path. (This is due to a cygwin internal optimization, see http://cygwin.com/ml/cygwin/2013-07/msg00538.html for details.) Arguments are only given through main's argc/argv, and they're already UTF-8. Signed-off-by: Martin Storsjö <martin@martin.st>
2013-07-07cmdutils: wrap exit explicitlyLuca Barbato
Some C runtime implementations deadlock when calling threading functions on the atexit() handler. Use a simpler wrapper similar to av_log to call the cleanup function before exit. Bug-Id: 523
2013-05-24lavfi: add a slice threading infrastructureAnton Khirnov
Mostly based on libavcodec's
2013-05-15pixdesc: rename PIX_FMT_* flags to AV_PIX_FMT_FLAG_*Anton Khirnov
2013-04-16cmdutils: Fix build with lavfi disabledAnton Khirnov
Signed-off-by: Diego Biurrun <diego@biurrun.de>
2013-04-11cmdutils: allow -h filter=<name> to print information about a filter.Anton Khirnov
2013-04-11avtools: move media_type_string() from avprobe to cmdutils.Anton Khirnov
It will be useful outside of avprobe.
2013-04-11lavfi: change the filter registering system to match the other librariesAnton Khirnov
Removes an arbitrary hardcoded limit on the number of filters.
2013-03-08avconv: print an error on applying options of the wrong type.Anton Khirnov
I.e. input options to output files or vice versa.
2013-03-08avplay: switch to new refcounted frames APIAnton Khirnov
Remove now unused cmdutils get_buffer() implementation.
2013-03-07Use the avstring.h locale-independent character type functionsReimar Döffinger
Make sure the behavior does not change with the locale. Signed-off-by: Martin Storsjö <martin@martin.st>
2013-02-28cmdutils: Allow calling filter_codec_opts without a set encoderMartin Storsjö
In this case, no encoder specific options are filtered, only options specific to that codec type in general. Signed-off-by: Martin Storsjö <martin@martin.st>
2013-02-26cmdutils: only use libavresample when it is enabledJustin Ruggles
avprobe and avserver use cmdutils and do not strictly require libavresample.
2013-02-24avconv: pass libavresample options to AVFilterGraphJustin Ruggles
2013-02-15get_buffer(): do not initialize the data.Anton Khirnov
There may be more decoders that rely on this. Those should be found and fixed.
2013-02-06qtrle: fix the topmost line for 1bitKostya Shishkov
Signed-off-by: Anton Khirnov <anton@khirnov.net> CC:libav-stable@libav.org
2013-02-06fraps: fix off-by one bug for version 1.Anton Khirnov
CC:libav-stable@libav.org
2013-02-06aasc: fix output for msrle compression.Anton Khirnov
The bottom line was invalid before. CC:libav-stable@libav.org
2013-02-06cmdutils: remove ansi from the list of broken codecs.Anton Khirnov
It's not relying on get_buffer() initializing the frame since 99e36ddd3ee57c38e6ca9e240ba518848487f849.
2013-02-06cdgraphics: do not rely on get_buffer() initializing the frame.Anton Khirnov
Setting it to zero (instead of 128, as the default get_buffer() does) also produces more correctly-looking output.
2013-01-03cmdutils: update copyright year to 2013Johan Andersson
Signed-off-by: Martin Storsjö <martin@martin.st>
2012-12-20cmdutils: pass number of groups to split_commandline().Anton Khirnov
This makes the code simpler and avoids mixing designated and non-designated initializers in a potentially unsafe way in avconv.
2012-12-18cmdutils: don't log an error in opt_default().Anton Khirnov
It results in spurious errors when using the new preparser.
2012-12-18cmdutils: add a commandline pre-parser.Anton Khirnov
It splits the commandline into a more convenient internal representation for further parsing. This will allow e.g. - processing global options first independently of their location on the commandline, eliminating ugly hacks for processing e.g. cpuflags first - better options validation and error reporting. It is now possible for the parser to know that it's applying an input option to an output file or vice versa and act accordingly.
2012-12-18cmdutils: split parse_option().Anton Khirnov
Separate the code that searches for the option to use and the code that actually writes it. The writing code will be reused by the new options parser.