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-02Remove angular brackets from Doxygen comments; Doxygen confuses them for HTML.Diego Biurrun
Originally committed as revision 23991 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-07-02Grammar fixesMåns Rullgård
Originally committed as revision 23961 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-06-30Fix grammar errors in documentationMåns Rullgård
Originally committed as revision 23904 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-05-07Document cmdutils.c:print_error().Stefano Sabatini
Originally committed as revision 23051 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-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-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
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-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-19Split show_formats().Michael Niedermayer
Originally committed as revision 20553 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-06Remove '\p', '\c' and '\e' doxygen markup from doxy, as it shouldStefano Sabatini
improve plain text doxy readability. See the thread: "[RFC] Should we use doxygen markup?". Originally committed as revision 19122 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-02-19Fix typo: explixitly -> explicitly.Stefano Sabatini
Originally committed as revision 17444 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
2008-10-04Fix 'make checkheaders', based on a patch by Diego Pettenò, flameeyes gmail ↵Diego Biurrun
com. Originally committed as revision 15552 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-09-28Move opt_default() and set_context_opts() to cmdutils so it can be used fromMichael Niedermayer
the other tools as well. Originally committed as revision 15450 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-05-29Simplify show_banner() so that it does not require arguments, similarStefano Sabatini
to what was previously done with show_version(). patch by Stefano Sabatini, stefano.sabatini-lala poste it Originally committed as revision 13526 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-05-27Update documentation of show_version() to account for latest changes.Stefano Sabatini
patch by Stefano Sabatini, stefano.sabatini-lala poste it Originally committed as revision 13463 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-05-22Move show_formats() to cmdutils.c.Stefano Sabatini
Patch by: Stefano Sabatini, stefano.sabatini-lala poste it Originally committed as revision 13236 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-05-22Do not pass program_name as argument to show_version(), this allows someMichael Niedermayer
future simplifications. Originally committed as revision 13232 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-05-22OPT_EXITMichael Niedermayer
Originally committed as revision 13231 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-04-17TypoStefano Sabatini
Patch by Stefano Sabatini stefano sabatini-lala poste it Originally committed as revision 12877 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-03-31Export parse_time_or_die from ffmpeg.c to cmdutils.cStefano Sabatini
Patch by Stefano Sabatini (stefano sabatini-lala poste it) Originally committed as revision 12647 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-02-25Improve wording/grammar of Doxygen comments.Diego Biurrun
Originally committed as revision 12215 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-02-25Export and document in cmdutils.h the function parse_number_or_die().Stefano Sabatini
Patch by Stefano Sabatini: stefano sabatini-lala poste it Originally committed as revision 12210 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-11-24Add missing #includes to fix 'make checkheaders'.Diego Biurrun
Originally committed as revision 11087 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-10-17Add FFMPEG_ prefix to all multiple inclusion guards.Diego Biurrun
Originally committed as revision 10765 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-10-17Use filename as multiple inclusion guard.Diego Biurrun
Originally committed as revision 10762 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-09-27Implement common show version and banner.Stefano Sabatini
Patch by Stefano Sabatini [stefano sabatini-lala poste it] Originally committed as revision 10600 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-08-22Identifiers starting with underscores are reserved.Diego Biurrun
Originally committed as revision 10179 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-08-20Implement the cmdutils.c show_license function.Stefano Sabatini
patch by Stefano Sabatini: [stefano sabatini-lala /\ poste it] Originally committed as revision 10149 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-08-14Make cmdutils.c:parse_options accept as argument a function to parseStefano Sabatini
bare command line parameters. patch by Stefano Sabatini, stefano.sabatini-lala poste it Originally committed as revision 10112 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-03-30add OPT_INT64 optionBaptiste Coudurier
Originally committed as revision 8554 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-02-27Add missing license headers.Diego Biurrun
Originally committed as revision 8149 to svn://svn.ffmpeg.org/ffmpeg/trunk
2005-09-11AVOption API improvmentsMichael Niedermayer
support AVOptions for encoding in ffmpeg.c Originally committed as revision 4580 to svn://svn.ffmpeg.org/ffmpeg/trunk
2005-06-03subtitle optionFabrice Bellard
Originally committed as revision 4350 to svn://svn.ffmpeg.org/ffmpeg/trunk
2004-10-171000l (copy & paste)Michael Niedermayer
Originally committed as revision 3603 to svn://svn.ffmpeg.org/ffmpeg/trunk
2004-10-17OPT_FLOATMichael Niedermayer
Originally committed as revision 3601 to svn://svn.ffmpeg.org/ffmpeg/trunk
2004-04-30OPT_INTMichael Niedermayer
Originally committed as revision 3092 to svn://svn.ffmpeg.org/ffmpeg/trunk
2003-08-24more sections in help - copyright fixesFabrice Bellard
Originally committed as revision 2143 to svn://svn.ffmpeg.org/ffmpeg/trunk
2003-06-07added ffplay utilityFabrice Bellard
Originally committed as revision 1936 to svn://svn.ffmpeg.org/ffmpeg/trunk