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-05-23Open 2-pass logfile in binary mode for both reading and writing.Reinhard Tartler
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. backport r23251 by ramiro Originally committed as revision 23261 to svn://svn.ffmpeg.org/ffmpeg/branches/0.6
2010-05-19Fix build with swscale disabledReinhard Tartler
backport r23062 by mru Originally committed as revision 23189 to svn://svn.ffmpeg.org/ffmpeg/branches/0.6
2010-05-19Reindent after the last commit.Reinhard Tartler
backport r23034 by stefano Originally committed as revision 23177 to svn://svn.ffmpeg.org/ffmpeg/branches/0.6
2010-05-19Simplify print_error(), directly use av_strerror()/strerror() forReinhard Tartler
printing the error code associated to FF_NETERROR(EPROTONOSUPPORT). backport r23033 by stefano Originally committed as revision 23176 to svn://svn.ffmpeg.org/ffmpeg/branches/0.6
2010-05-19Make print_error() use strerror() in case av_strerror() fails.Reinhard Tartler
Should provide a meaningful error message for systems which do not support strerror_r(). Fix roundup issue #1894. backport r23032 by stefano Originally committed as revision 23175 to svn://svn.ffmpeg.org/ffmpeg/branches/0.6
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
2009-03-04Rename avctx_opts to avcodec_opts.Stefano Sabatini
The new name is more meaningful and consistent with avformat_opts and sws_opts. Originally committed as revision 17789 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-03-04Remove old scaler.Michael Niedermayer
Originally committed as revision 17786 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-02-05Revert part of r16593.Ramiro Polla
network.h should only be included when CONFIG_NETWORK is set. Originally committed as revision 17009 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-01-19Implement a var for containing the current year number rather thanStefano Sabatini
hardcode it in the banner string. Originally committed as revision 16678 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-01-14Remove pointless #if around header #includes.Diego Biurrun
Originally committed as revision 16593 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-01-14Change semantic of CONFIG_*, HAVE_* and ARCH_*.Aurelien Jacobs
They are now always defined to either 0 or 1. Originally committed as revision 16590 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-01-02Bump year number.Stefano Sabatini
Originally committed as revision 16406 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-12-20Remove calls to deprecated av_set_string2() with calls toStefano Sabatini
av_set_string3(). Originally committed as revision 16241 to svn://svn.ffmpeg.org/ffmpeg/trunk