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
2010-07-30Extend show_protocols() to make it print information about input,Stefano Sabatini
output, seek support. Originally committed as revision 24581 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-07-22Factorize indent definition in PRINT_LIB_INFO().Stefano Sabatini
Originally committed as revision 24435 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-07-22Merge maybe_print_config() and PRINT_LIB_CONFIG() in PRINT_LIB_INFO().Stefano Sabatini
Originally committed as revision 24434 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-07-22Rename:Stefano Sabatini
PRINT_LIB_VERSION() -> PRINT_LIB_INFO() print_all_lib_versions() -> print_all_libs_info() Originally committed as revision 24433 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-07-22Reindent.Stefano Sabatini
Originally committed as revision 24432 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-07-22Increase flexibility of PRINT_LIB_VERSION(), make it accept a flagsStefano Sabatini
parameter. Allow a pending factorization. Originally committed as revision 24431 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-07-21Add libavcore.Stefano Sabatini
The new library is meant to contain the core multimedia utilities for FFmpeg, to make them shareable between more libav* libraries. See thread: Subject: [FFmpeg-devel] [RFC] New library for shared non-generic libav* utils Date: Fri, 9 Jul 2010 01:07:40 +0200 Originally committed as revision 24393 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-06-10Make all the numeric options accept in input an expression which isStefano Sabatini
evaluated through av_strtod(). Fix roundup issue #551. Originally committed as revision 23556 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-05-23Open 2-pass logfile in binary mode for both reading and writing.Ramiro Polla
This fixes a regression on Windows introduced by r22769 in which the data read from the file was not properly zero terminated. The file was read as text, which caused the \r characters to be suppressed. Since the zero termination happens at the end of the buffer, and there was one byte less read per line, this caused the remaining space on the buffer to contain random data. Originally committed as revision 23251 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-05-09Fix build with swscale disabledMåns Rullgård
Originally committed as revision 23062 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-05-06Reindent after the last commit.Stefano Sabatini
Originally committed as revision 23034 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-05-06Simplify print_error(), directly use av_strerror()/strerror() forStefano Sabatini
printing the error code associated to FF_NETERROR(EPROTONOSUPPORT). Originally committed as revision 23033 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-05-06Make print_error() use strerror() in case av_strerror() fails.Stefano Sabatini
Should provide a meaningful error message for systems which do not support strerror_r(). Fix roundup issue #1894. Originally committed as revision 23032 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-04-16AVERROR(FF_NETERROR(x)) -> FF_NETERROR(x)Ramiro Polla
FF_NETERROR is implicitly an AVERROR. Originally committed as revision 22888 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-04-02Implement cmdutils.c:read_file(), and use it in ffmpeg.c for readingStefano Sabatini
the second pass encoding log file. Originally committed as revision 22769 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-31Issue a more general message when the function which sets an optionStefano Sabatini
fails. It may fail not only because of an invalid value for the option, but also for other reasons, e.g. memory problems etc. Originally committed as revision 22738 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-31Define AVMediaType enum, and use it instead of enum CodecType, whichStefano Sabatini
is deprecated and will be dropped at the next major bump. Originally committed as revision 22735 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-27Use av_strerror() in print_error().Stefano Sabatini
Originally committed as revision 22696 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-18Remove printing of frame sizes and frame rate abbreviations fromStefano Sabatini
show_protocols(). The list of abbreviations is both outdated and out of context. Originally committed as revision 22589 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-08Remove hacks not required since HAVE_AV_CONFIG_H was unset for the appsMåns Rullgård
Originally committed as revision 22295 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-06Make opt_default() look for options in sws_opts only if sws_opts isStefano Sabatini
defined, fix crash. Originally committed as revision 22232 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-02-22Make opt_default() print an error message and exit if the optionStefano Sabatini
supplied is not recognized. Originally committed as revision 21960 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-02-18FFmpeg is a collective effort so allowing a single name in a banner isStefano Sabatini
not nice/fair towards the community of developers. Also this looks like the best way for resolving the debate about which is the one person name to be put in the banner. See the thread: Subject: [FFmpeg-devel] [PATCH] Replace "Fabrice Bellard" with "the FFmpeg developers" in the banner Date: Thu, 11 Feb 2010 23:59:12 +0100 Originally committed as revision 21885 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-02-11Extend show_pix_fmts(), make it show input/output support forStefano Sabatini
conversion and other information exposed by the pixdesc API. Originally committed as revision 21751 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-02-10Check for setrlimit()Måns Rullgård
Originally committed as revision 21733 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-02-07Make parse_options() explicitely handle the case where an opt_func2Stefano Sabatini
function returns a negative value, rather than erroneously trigger the code which manages the case of unknown option. Originally committed as revision 21670 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-01-28Declare variable "version" in the PRINT_LIB_VERSION() macro if block,Stefano Sabatini
slightly simpler and more robust. Originally committed as revision 21492 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-01-27Prettify PRINT_LIB_VERSION macroMåns Rullgård
Originally committed as revision 21477 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-01-27Get rid of ifdeffery for printing library versions and configurationsMåns Rullgård
Originally committed as revision 21476 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-01-25Print config of each lib if different from that of ffmpeg/ffplay/ffserverMåns Rullgård
Originally committed as revision 21448 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-01-20Add -timelimit optionMåns Rullgård
This option limits the CPU time used by ffmpeg to the number of seconds specified. After this time, the OS sends a SIGXCPU signal, which we handle and attempt to exit cleanly. If the process is stuck, the OS will deliver a SIGKILL one second later, forcibly terminating the process. This functionality is useful in automated setups where a runaway ffmpeg process would otherwise go undetected. Originally committed as revision 21347 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-01-01Update this_year value.Stefano Sabatini
Originally committed as revision 20995 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-12-28Mark conditionally used variable as av_unused, fixes the warning:Diego Biurrun
cmdutils.c:576: warning: unused variable ‘filter’ Originally committed as revision 20943 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-12-22Implement a -pix_fmts option for listing all the supported pixelStefano Sabatini
formats. Originally committed as revision 20909 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-12-15Factorize opt+1 out in parse_options(), simplify.Stefano Sabatini
Originally committed as revision 20872 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-12-12Only list libavfilter filters if libavfilter has been enabled duringStefano Sabatini
configuration. Fix compilation if FFmpeg is not configured with --enable-avfilter. Originally committed as revision 20813 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-12-12Move list_fmts() from ffmpeg.c to cmdutils.{h,c}, so that it can beStefano Sabatini
shared by the other ff* tools code. Originally committed as revision 20812 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-12-12Implement a -filters option, listing all the available libavfilterStefano Sabatini
filters. Currently filters are not registered, so the option will show none. Originally committed as revision 20807 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-11-21Make show_protocols() print one protocol per line.Stefano Sabatini
Originally committed as revision 20568 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-11-19Split show_formats().Michael Niedermayer
Originally committed as revision 20553 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-11-19Make show_formats() print each bitstream filter on a separate line.Stefano Sabatini
Improve readability of the output. Originally committed as revision 20549 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-09-22Improve compiler information code to print to the console on program startup.Diego Biurrun
Remove gcc-specific hacks and allow filling relevant information for non-gcc compilers in configure. Originally committed as revision 19963 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-09-22Print compiler version and build date before configuration in console output.Diego Biurrun
Originally committed as revision 19962 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-08-09Document the output of ffmpeg -formats.William R. Zwicky
Patch by William R. Zwicky, wrzwicky pobox com Originally committed as revision 19610 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-08-03Handle noX for OPT_BOOL X.Benoit Fouet
Originally committed as revision 19572 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-06-27Remove superfluous const.Carl Eugen Hoyos
Originally committed as revision 19284 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-06-17Move opt_loglevel() from ffmpeg.c to cmdutils.c.Stefano Sabatini
Originally committed as revision 19209 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-06-05Add configure option to upgrade (L)GPL to version 3.Diego Biurrun
Originally committed as revision 19116 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-05-26Factorize initial "printf(" and ");" in show_license().Stefano Sabatini
Originally committed as revision 18950 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-03-19Implement read_yesno().Stefano Sabatini
Originally committed as revision 18037 to svn://svn.ffmpeg.org/ffmpeg/trunk