- Feb 25, 2013
-
-
Justin Ruggles authored
avprobe and avserver use cmdutils and do not strictly require libavresample.
-
- Feb 23, 2013
-
-
Justin Ruggles authored
-
- Feb 15, 2013
-
-
Anton Khirnov authored
There may be more decoders that rely on this. Those should be found and fixed.
-
- Feb 06, 2013
-
-
Kostya Shishkov authored
Signed-off-by:
Anton Khirnov <anton@khirnov.net> CC:libav-stable@libav.org
-
Anton Khirnov authored
CC:libav-stable@libav.org
-
Anton Khirnov authored
The bottom line was invalid before. CC:libav-stable@libav.org
-
Anton Khirnov authored
It's not relying on get_buffer() initializing the frame since 99e36ddd.
-
Anton Khirnov authored
Setting it to zero (instead of 128, as the default get_buffer() does) also produces more correctly-looking output.
-
- Jan 03, 2013
-
-
Johan Andersson authored
Signed-off-by:
Martin Storsjö <martin@martin.st>
-
- Dec 19, 2012
-
-
Anton Khirnov authored
This makes the code simpler and avoids mixing designated and non-designated initializers in a potentially unsafe way in avconv.
-
- Dec 18, 2012
-
-
Anton Khirnov authored
It results in spurious errors when using the new preparser.
-
Anton Khirnov authored
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.
-
Anton Khirnov authored
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.
-
- Dec 04, 2012
-
-
Anton Khirnov authored
There is no point in duplicating this code in every get_buffer() implementation.
-
- Nov 29, 2012
-
-
Martin Storsjö authored
This simplifies the condition to avoid hardcoding the systems where the function exists. This also simplifies support for newer Windows API subsets where this function doesn't exist, such as Windows Phone 8 and the "metro" API subset of Windows 8. Signed-off-by:
Martin Storsjö <martin@martin.st>
-
- Nov 13, 2012
-
-
Luca Barbato authored
Deprecate avcodec_get_chroma_sub_sample.
-
- Oct 29, 2012
-
-
Diego Biurrun authored
This fixes compilation with libswscale disabled.
-
- Oct 23, 2012
-
-
Mans Rullgard authored
Some systems require sys/time.h being explicitly included before sys/resource.h. The configure check already does this. Signed-off-by:
Mans Rullgard <mans@mansr.com>
-
- Oct 12, 2012
-
-
Anton Khirnov authored
-
- Oct 09, 2012
-
-
Janne Grunau authored
Fixes CID732166.
-
- Oct 08, 2012
-
-
Anton Khirnov authored
-
- Oct 01, 2012
-
-
Diego Elio Pettenò authored
-
- Sep 15, 2012
-
-
Anton Khirnov authored
Fixes bug 352.
-
- Aug 30, 2012
-
-
Anton Khirnov authored
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).
-
Anton Khirnov authored
-
- Aug 24, 2012
-
-
Anton Khirnov authored
-
- Aug 19, 2012
-
-
Anton Khirnov authored
-
Anton Khirnov authored
-
Anton Khirnov authored
-
Anton Khirnov authored
Currently it takes a mask and value, such that options for which (flags & mask) == value. Change it to take required flags and forbidden flags instead. This is shorter and simpler to understand.
-
Anton Khirnov authored
Don't require every caller to supply them.
-
Anton Khirnov authored
show_foo() functions are declared as void show_foo(void), but called as int show_foo(const char*, const char*).
-
- Aug 18, 2012
-
-
Anton Khirnov authored
Make it print a list of AVCodecDescriptors. Add new -decoders and -encoders options that print lists of decoders and encoders respectively.
-
- Aug 07, 2012
-
-
Anton Khirnov authored
-
- Jul 19, 2012
-
-
Mans Rullgard authored
This provides a more precise identification of the compiler used. Signed-off-by:
Mans Rullgard <mans@mansr.com>
-
- Jul 07, 2012
-
-
Ronald S. Bultje authored
This is required for CommandLineToArgvW. Normally, shellapi.h is included implicitly by windows.h, but if we define WIN32_LEAN_AND_MEAN (or some of the other earlier headers have included windows.h with that option), windows.h doesn't include this one. Thus explicitly include the headers we really need, for clarity and compatibility.
-
- Jun 30, 2012
-
-
Martin Storsjö authored
This allows passing the right options to encoders when there's more than one encoder for a certain codec id. Signed-off-by:
Martin Storsjö <martin@martin.st>
-
- Jun 05, 2012
-
-
Anton Khirnov authored
It will be used by avplay.
-
- May 09, 2012
-
-
Diego Biurrun authored
This fixes the warning: cmdutils.c:897: warning: ‘type’ may be used uninitialized in this function
-
Anton Khirnov authored
Also add the public interface libavfilter/buffersink.h. Based on a commit by Stefano Sabatini.
-