History | View | Annotate | Download (19 KB)
Improve compiler information code to print to the console on program startup.Remove gcc-specific hacks and allow filling relevant information for non-gcccompilers in configure.
Originally committed as revision 19963 to svn://svn.ffmpeg.org/ffmpeg/trunk
Print compiler version and build date before configuration in console output.
Originally committed as revision 19962 to svn://svn.ffmpeg.org/ffmpeg/trunk
Document the output of ffmpeg -formats.
Patch by William R. Zwicky, wrzwicky pobox com
Originally committed as revision 19610 to svn://svn.ffmpeg.org/ffmpeg/trunk
Handle noX for OPT_BOOL X.
Originally committed as revision 19572 to svn://svn.ffmpeg.org/ffmpeg/trunk
Remove superfluous const.
Originally committed as revision 19284 to svn://svn.ffmpeg.org/ffmpeg/trunk
Move opt_loglevel() from ffmpeg.c to cmdutils.c.
Originally committed as revision 19209 to svn://svn.ffmpeg.org/ffmpeg/trunk
Add configure option to upgrade (L)GPL to version 3.
Originally committed as revision 19116 to svn://svn.ffmpeg.org/ffmpeg/trunk
Factorize initial "printf(" and ");" in show_license().
Originally committed as revision 18950 to svn://svn.ffmpeg.org/ffmpeg/trunk
Implement read_yesno().
Originally committed as revision 18037 to svn://svn.ffmpeg.org/ffmpeg/trunk
Rename avctx_opts to avcodec_opts.
The new name is more meaningful and consistent with avformat_optsand sws_opts.
Originally committed as revision 17789 to svn://svn.ffmpeg.org/ffmpeg/trunk
Remove old scaler.
Originally committed as revision 17786 to svn://svn.ffmpeg.org/ffmpeg/trunk
Revert part of r16593.network.h should only be included when CONFIG_NETWORK is set.
Originally committed as revision 17009 to svn://svn.ffmpeg.org/ffmpeg/trunk
Implement a var for containing the current year number rather thanhardcode it in the banner string.
Originally committed as revision 16678 to svn://svn.ffmpeg.org/ffmpeg/trunk
Remove pointless #if around header #includes.
Originally committed as revision 16593 to svn://svn.ffmpeg.org/ffmpeg/trunk
Change semantic of CONFIG_*, HAVE_* and ARCH_*.They are now always defined to either 0 or 1.
Originally committed as revision 16590 to svn://svn.ffmpeg.org/ffmpeg/trunk
Bump year number.
Originally committed as revision 16406 to svn://svn.ffmpeg.org/ffmpeg/trunk
Remove calls to deprecated av_set_string2() with calls toav_set_string3().
Originally committed as revision 16241 to svn://svn.ffmpeg.org/ffmpeg/trunk
Fix weird indent.
Originally committed as revision 16200 to svn://svn.ffmpeg.org/ffmpeg/trunk
Fix opt_default(), making it exit immediately in case of an invalidargument.See the thread: "[PATCH] Fix opt_default()".
Originally committed as revision 16196 to svn://svn.ffmpeg.org/ffmpeg/trunk
Include headers for optional libraries only when enabled.
Include the headers for libavfilter, libswscale and libpostproc whenthey are enabled (and thus linked in).
Without this change, Sun Studio will fail to link FFmpeg since twoinline functions defined in avfilter.h will have undefined references...
Use CONFIG_* macros in cmdutils.c for consistency.
Originally committed as revision 15626 to svn://svn.ffmpeg.org/ffmpeg/trunk
Mark print_all_lib_versions() static in cmdutils.c . Patch by Diego Pettenò
Originally committed as revision 15547 to svn://svn.ffmpeg.org/ffmpeg/trunk
Move opt_default() and set_context_opts() to cmdutils so it can be used fromthe other tools as well.
Originally committed as revision 15450 to svn://svn.ffmpeg.org/ffmpeg/trunk
Make show_banner()/show_version() print the libpostproc versionnumbers if enabled.
Originally committed as revision 15149 to svn://svn.ffmpeg.org/ffmpeg/trunk
Cosmetics: vertical align in print_all_lib_versions().
Originally committed as revision 15032 to svn://svn.ffmpeg.org/ffmpeg/trunk
Make show_version()/show_banner() print the libswscale versions ifenabled.
Originally committed as revision 15031 to svn://svn.ffmpeg.org/ffmpeg/trunk
Make show_banner() and show_version() print both the compile-time and thelink-time/run-time libav* version numbers.
Originally committed as revision 14737 to svn://svn.ffmpeg.org/ffmpeg/trunk
Replace call to deprecated avcodec_build() with avcodec_version().
Originally committed as revision 14521 to svn://svn.ffmpeg.org/ffmpeg/trunk
Print the program_name rather than always "FFmpeg" when showing thecommandline tools license.
Originally committed as revision 14141 to svn://svn.ffmpeg.org/ffmpeg/trunk
Simplify show_banner() so that it does not require arguments, similarto 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
Move show_formats() to cmdutils.c.Patch by: Stefano Sabatini, stefano.sabatini-lala poste it
Originally committed as revision 13236 to svn://svn.ffmpeg.org/ffmpeg/trunk
Do not pass program_name as argument to show_version(), this allows somefuture simplifications.
Originally committed as revision 13232 to svn://svn.ffmpeg.org/ffmpeg/trunk
OPT_EXIT
Originally committed as revision 13231 to svn://svn.ffmpeg.org/ffmpeg/trunk
Use full path for #includes from another directory.
Originally committed as revision 13098 to svn://svn.ffmpeg.org/ffmpeg/trunk
Compile network-related code conditionally.
Originally committed as revision 13076 to svn://svn.ffmpeg.org/ffmpeg/trunk
Error message for EPROTONOSUPPORT, patch from prossATxvidDoTorg
Originally committed as revision 12679 to svn://svn.ffmpeg.org/ffmpeg/trunk
Export parse_time_or_die from ffmpeg.c to cmdutils.c
Patch by Stefano Sabatini (stefano sabatini-lala poste it)
Originally committed as revision 12647 to svn://svn.ffmpeg.org/ffmpeg/trunk
typo: occured --> occurred
Originally committed as revision 12549 to svn://svn.ffmpeg.org/ffmpeg/trunk
cosmetics: #include config.h before all other FFmpeg headers.
Originally committed as revision 12450 to svn://svn.ffmpeg.org/ffmpeg/trunk
Remove INFINITY as suggested by rich.
Originally committed as revision 12289 to svn://svn.ffmpeg.org/ffmpeg/trunk
Print libavfilter version if it is enabled in configure
Originally committed as revision 12259 to svn://svn.ffmpeg.org/ffmpeg/trunk
Make parse_options() use parse_number_or_die().Patch by Stefano Sabatini stefano sabatini-lala poste it
Originally committed as revision 12211 to svn://svn.ffmpeg.org/ffmpeg/trunk
parse_number_or_die()Based on a patch by Stefano Sabatini.
Originally committed as revision 12167 to svn://svn.ffmpeg.org/ffmpeg/trunk
Do not print an (L)GPL license statement when nonfree parts have been compiledinto FFmpeg. Instead warn that the resulting binary is unredistributable.
Originally committed as revision 11666 to svn://svn.ffmpeg.org/ffmpeg/trunk
Print libavdevice version.
Originally committed as revision 11484 to svn://svn.ffmpeg.org/ffmpeg/trunk
Update show_banner date.
Originally committed as revision 11368 to svn://svn.ffmpeg.org/ffmpeg/trunk
cmdutils.c uses FFMPEG_CONFIGURATION from config.h without directly includingconfig.h so that compilation without HAVE_AV_CONFIG_H fails.patch by Ronald S. Bultje, rsbultje gmail com
Originally committed as revision 10619 to svn://svn.ffmpeg.org/ffmpeg/trunk
Implement common show version and banner.Patch by Stefano Sabatini [stefano sabatini-lala poste it]
Originally committed as revision 10600 to svn://svn.ffmpeg.org/ffmpeg/trunk
Implement the cmdutils.c show_license function.patch by Stefano Sabatini: [stefano sabatini-lala /\ poste it]
Originally committed as revision 10149 to svn://svn.ffmpeg.org/ffmpeg/trunk
Make cmdutils.c:parse_options accept as argument a function to parsebare command line parameters.patch by Stefano Sabatini, stefano.sabatini-lala poste it
Originally committed as revision 10112 to svn://svn.ffmpeg.org/ffmpeg/trunk
Replace the only occurrence of AVERROR_NOENT with AVERROR.
Originally committed as revision 9761 to svn://svn.ffmpeg.org/ffmpeg/trunk
Replace all occurrences of AVERROR_IO with AVERROR.
Originally committed as revision 9760 to svn://svn.ffmpeg.org/ffmpeg/trunk
Replace all occurrences of AVERROR_NOMEM with AVERROR.
Originally committed as revision 9759 to svn://svn.ffmpeg.org/ffmpeg/trunk
to be able to compile without HAVE_AV_CONFIG_Hpatch by Ronald S. Bultje: [rsbultje gmail com]original thread: [FFmpeg-devel] ffmpeg.c/cmdutils.c compilationdate: 06/23/2007 03:15 AM
Originally committed as revision 9453 to svn://svn.ffmpeg.org/ffmpeg/trunk
replace the uses of old string functions that Reimar missed
Originally committed as revision 9406 to svn://svn.ffmpeg.org/ffmpeg/trunk
Move HAVE_AV_CONFIG_H definition to the Makefile like in the rest of FFmpeg.
Originally committed as revision 9273 to svn://svn.ffmpeg.org/ffmpeg/trunk
Remove redundant #include, avformat.h indirectly includes common.h.
Originally committed as revision 9261 to svn://svn.ffmpeg.org/ffmpeg/trunk
Use url_fopen error code when opening input filehandle the AVERROR_NOENT error case in print_error
Originally committed as revision 8977 to svn://svn.ffmpeg.org/ffmpeg/trunk
change atoll call to equivalent strtoll to fix compilation on Mac OS X 10.2patch by Patrice Bensoussan \ patrice dot bensoussan chez free dot frOriginal thread:date: 04/05/2007 07:56 PMsubject: [Ffmpeg-devel] [PATCH] Fix broken compilation on Mac OS X 10.2 due to OPT_INT64 support...
add OPT_INT64 option
Originally committed as revision 8554 to svn://svn.ffmpeg.org/ffmpeg/trunk
prevent exit missuse
Originally committed as revision 8536 to svn://svn.ffmpeg.org/ffmpeg/trunk
10l in r7174 caused all options to be treated as filenames.
Originally committed as revision 7177 to svn://svn.ffmpeg.org/ffmpeg/trunk
Add support for files that begin with a dash.Patch by Timo Lindfors % lindi A kurp P hut P fi %Original thread:Date: Mon, 27 Nov 2006 02:00:14 +0200Subject: [Ffmpeg-devel] ffplay confused about filenames that begin with a dash
Originally committed as revision 7174 to svn://svn.ffmpeg.org/ffmpeg/trunk
Change license headers to say 'FFmpeg' instead of 'this program/this library'and fix GPL/LGPL version mismatches.
Originally committed as revision 6577 to svn://svn.ffmpeg.org/ffmpeg/trunk
Update licensing information: The FSF changed postal address.
Originally committed as revision 4842 to svn://svn.ffmpeg.org/ffmpeg/trunk
COSMETICS: tabs --> spaces, some prettyprinting
Originally committed as revision 4764 to svn://svn.ffmpeg.org/ffmpeg/trunk
COSMETICS: Remove all trailing whitespace.
Originally committed as revision 4749 to svn://svn.ffmpeg.org/ffmpeg/trunk
fix const warning
Originally committed as revision 4739 to svn://svn.ffmpeg.org/ffmpeg/trunk
AVOption API improvmentssupport AVOptions for encoding in ffmpeg.c
Originally committed as revision 4580 to svn://svn.ffmpeg.org/ffmpeg/trunk
handle AVERROR_IO and AVERROR_NOMEM patch by (Kostya <cannonball bw-team com>)
Originally committed as revision 3853 to svn://svn.ffmpeg.org/ffmpeg/trunk
various security fixes and precautionary checks
Originally committed as revision 3822 to svn://svn.ffmpeg.org/ffmpeg/trunk
OPT_FLOAT
Originally committed as revision 3601 to svn://svn.ffmpeg.org/ffmpeg/trunk
OPT_INT
Originally committed as revision 3092 to svn://svn.ffmpeg.org/ffmpeg/trunk
(f)printf() is disallowed in libavcodec, compilation will fail now if its used, except that codecs which where added after the printf->av_log change which did ignore av_log() and used prinf are now silent and wont print anything, they should be changed to use av_log, i could do that, but its better if the orginal developer decides which AV_LOG level each message should get...
more sections in help - copyright fixes
Originally committed as revision 2143 to svn://svn.ffmpeg.org/ffmpeg/trunk
added ffplay utility
Originally committed as revision 1936 to svn://svn.ffmpeg.org/ffmpeg/trunk