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
2012-07-19Print full compiler identification, not only version numberMans Rullgard
This provides a more precise identification of the compiler used. Signed-off-by: Mans Rullgard <mans@mansr.com>
2012-07-08cmutils: include shellapi.h on Win32 (for CommandLineToArgvW).Ronald S. Bultje
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.
2012-06-30cmdutils: Pass the actual chosen encoder to filter_codec_optsMartin Storsjö
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>
2012-06-05avtools: move buffer management code from avconv to cmdutils.Anton Khirnov
It will be used by avplay.
2012-05-10cmdutils: Add fallback case to switch in check_stream_specifier().Diego Biurrun
This fixes the warning: cmdutils.c:897: warning: ‘type’ may be used uninitialized in this function
2012-05-09lavfi: add video buffer sink, and use it in avtoolsAnton Khirnov
Also add the public interface libavfilter/buffersink.h. Based on a commit by Stefano Sabatini.
2012-04-25avconv: use libavresampleJustin Ruggles
2012-04-15avconv: get output pixel format from lavfi.Anton Khirnov
This way we don't require a clearly defined corresponding input stream. The result for the xwd test changes because rgb24 is now chosen instead of bgra.
2012-03-18Read preset files with suffix .avpresetReinhard Tartler
The preset files have been renamed some time ago. CC: libav-stable@libav.org
2012-03-06avconv: add -cpuflags option for setting supported cpuflags.Anton Khirnov
Useful for testing.
2012-03-05cmdutils: use new avcodec_is_decoder/encoder() functions.Anton Khirnov
Fixes listing encoders.
2012-02-23Remove libpostproc.Diego Biurrun
This library does not fit into Libav as a whole and its code is just a maintenance burden. Furthermore it is now available as an external project, which completely obviates any reason to keep it around. URL: http://git.videolan.org/?p=libpostproc.git
2012-02-08cmdutils: update copyright year to 2012.Ronald S. Bultje
2012-01-27cmdutils: fix options starting with 'no'.Alexandra Khirnova
E.g. non_linear_quant mpeg2video private option. Signed-off-by: Anton Khirnov <anton@khirnov.net>
2012-01-25Drop unnecessary prefix from *sink* variable and struct names.Diego Biurrun
2012-01-19cosmetics: Rename ffsink to avsink.Diego Biurrun
2012-01-11No longer build libpostproc by defaultReinhard Tartler
update documentation to inform developers that it may be removed in a later release. Signed-off-by: Reinhard Tartler <siretart@tauware.de>
2012-01-04cmdutils: K&R reformatting cosmeticsAneesh Dogra
Signed-off-by: Diego Biurrun <diego@biurrun.de>
2011-12-31cosmetics: Drop unnecessary parentheses around return values.Diego Biurrun
2011-12-25lavc: add a sample_aspect_ratio field to AVFrameStefano Sabatini
The sample aspect ratio is a per-frame property, so it makes sense to define it in AVFrame rather than in the codec/stream context. Simplify application-level sample aspect ratio information extraction, and allow further simplifications.
2011-11-22Add libavutil/mathematics.h #includes for INFINITYMans Rullgard
This fixes build errors in some environments. Signed-off-by: Mans Rullgard <mans@mansr.com>
2011-10-31cmdutils: Rename read_file to cmdutils_read_fileMartin Storsjö
This symbol name clashes with a symbol in gnutls, if linking statically to that library. Signed-off-by: Martin Storsjö <martin@martin.st>
2011-10-30cmdutils: check fread() return valueJanne Grunau
2011-10-12cmdutils/avtools: simplify show_help() by using av_opt_child_class_next()Anton Khirnov
2011-10-12AVOptions: rename FF_OPT_TYPE_* => AV_OPT_TYPE_*Anton Khirnov
2011-10-12Remove all uses of deprecated AVOptions API.Anton Khirnov
2011-10-09avtools: add -v as alias for -loglevelMans Rullgard
This saves a bit of typing. Signed-off-by: Mans Rullgard <mans@mansr.com>
2011-09-27avconv: add support for copying attachments.Anton Khirnov
2011-09-26cmdutils: replace fprintf() by av_log()Anton Khirnov
This way, all messages can be easily disabled with -loglevel. Behavior change -- configuration is printed with AV_LOG_VERBOSE, so it's not shown by default.
2011-09-26avtools: parse loglevel before all the other options.Anton Khirnov
This way it can be applied to cmdutils too -- e.g. showing the banner and printing startup messages.
2011-09-23cmdutils: move grow_array out of #if CONFIG_AVFILTERJanne Grunau
fixes programs linking with --disable-avfilter
2011-09-11cmdutils: add support for programs in check_stream_specifier()Anton Khirnov
Remove now redundant (and broken/undocumented) opt_programid.
2011-09-11avconv: move audio_sample_fmt to options context.Anton Khirnov
Also document it and replace undocumented and inconsistent '-sample_fmt list' syntax with -sample_fmts.
2011-09-05avconv: move ts scale to options context.Anton Khirnov
2011-09-04avconv: move start_time, recording_time and input_ts_offset to options contextAnton Khirnov
2011-09-04cmdutils: allow storing per-stream/chapter/.... options in a generic wayAnton Khirnov
2011-09-04cmdutils: split per-option code out of parse_options().Anton Khirnov
This allows options like -target, which are just shortcuts for other options, to work without dummy function for all options they invoke.
2011-09-04cmdutils: add support for caller-provided option context.Anton Khirnov
This is the first step to removing the globals plague from avtools.
2011-09-04cmdutils: declare only one pointer type in OptionDefAnton Khirnov
This will be useful in the following commit.
2011-09-04cmdutils: move grow_array() from avconv to cmdutils.Anton Khirnov
2011-09-04cmdutils: move exit_program() declaration to cmdutils from avconvAnton Khirnov
Allows cmdutils to call each tool's own cleanup function.
2011-09-03cmdutils: get rid of dummy contexts for examining AVOptions.Anton Khirnov
Replace it with newly introduced libavutil API.
2011-08-12cmdutils: allow precisely specifying a stream for AVOptions.Anton Khirnov
2011-08-12cmdutils: allow ':'-separated modifiers in option names.Anton Khirnov
2011-08-12Make a copy of ffmpeg under a new name -- avconv.Anton Khirnov
It will be further developed with a few incompatible changes. ffmpeg.c will stay as is for some time, so any scripts using it won't be broken.
2011-07-28cmdutils: add codec_opts parameter to setup_find_stream_info_opts()Stefano Sabatini
Avoid brittle and obfuscating reference to a global. Signed-off-by: Anton Khirnov <anton@khirnov.net>
2011-07-14cmdutils: replace opt_default with opt_default2() and remove set_context_optsAnton Khirnov
2011-07-14ffplay: use new avcodec_open2 and avformat_find_stream_info API.Anton Khirnov
2011-07-14cmdutils: store all codec options in one dict instead of video/audio/subAnton Khirnov
Split them when codec id is known.
2011-07-10lavc: make avcodec_alloc_context3 officially public.Anton Khirnov
Deprecate avcodec_alloc_context/2.