summaryrefslogtreecommitdiff
path: root/cmdutils.c
Commit message (Collapse)AuthorAge
* Revert part of r16593.Ramiro Polla2009-02-05
| | | | | | 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 thanStefano Sabatini2009-01-18
| | | | | | hardcode it in the banner string. Originally committed as revision 16678 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove pointless #if around header #includes.Diego Biurrun2009-01-14
| | | | Originally committed as revision 16593 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Change semantic of CONFIG_*, HAVE_* and ARCH_*.Aurelien Jacobs2009-01-13
| | | | | | 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.Stefano Sabatini2009-01-02
| | | | Originally committed as revision 16406 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove calls to deprecated av_set_string2() with calls toStefano Sabatini2008-12-19
| | | | | | av_set_string3(). Originally committed as revision 16241 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix weird indent.Stefano Sabatini2008-12-18
| | | | Originally committed as revision 16200 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix opt_default(), making it exit immediately in case of an invalidStefano Sabatini2008-12-17
| | | | | | | argument. 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.Diego Pettenò2008-10-22
| | | | | | | | | | | Include the headers for libavfilter, libswscale and libpostproc when they are enabled (and thus linked in). Without this change, Sun Studio will fail to link FFmpeg since two inline functions defined in avfilter.h will have undefined references to non-inline libavfilter functions. Originally committed as revision 15665 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use CONFIG_* macros in cmdutils.c for consistency.Diego Pettenò2008-10-16
| | | | 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òDiego Pettenò2008-10-04
| | | | 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 fromMichael Niedermayer2008-09-28
| | | | | | the other tools as well. Originally committed as revision 15450 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make show_banner()/show_version() print the libpostproc versionStefano Sabatini2008-09-01
| | | | | | numbers if enabled. Originally committed as revision 15149 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Cosmetics: vertical align in print_all_lib_versions().Stefano Sabatini2008-08-29
| | | | Originally committed as revision 15032 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make show_version()/show_banner() print the libswscale versions ifStefano Sabatini2008-08-29
| | | | | | enabled. Originally committed as revision 15031 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make show_banner() and show_version() print both the compile-time and theStefano Sabatini2008-08-13
| | | | | | link-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().Diego Biurrun2008-08-03
| | | | Originally committed as revision 14521 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Print the program_name rather than always "FFmpeg" when showing theStefano Sabatini2008-07-09
| | | | | | commandline tools license. Originally committed as revision 14141 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Simplify show_banner() so that it does not require arguments, similarStefano Sabatini2008-05-29
| | | | | | | 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
* Move show_formats() to cmdutils.c.Stefano Sabatini2008-05-22
| | | | | | 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 someMichael Niedermayer2008-05-21
| | | | | | future simplifications. Originally committed as revision 13232 to svn://svn.ffmpeg.org/ffmpeg/trunk
* OPT_EXITMichael Niedermayer2008-05-21
| | | | Originally committed as revision 13231 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use full path for #includes from another directory.Diego Biurrun2008-05-09
| | | | Originally committed as revision 13098 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Compile network-related code conditionally.Ramiro Polla2008-05-08
| | | | Originally committed as revision 13076 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Error message for EPROTONOSUPPORT, patch from prossATxvidDoTorgLuca Barbato2008-04-03
| | | | Originally committed as revision 12679 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Export parse_time_or_die from ffmpeg.c to cmdutils.cStefano Sabatini2008-03-31
| | | | | | Patch by Stefano Sabatini (stefano sabatini-lala poste it) Originally committed as revision 12647 to svn://svn.ffmpeg.org/ffmpeg/trunk
* typo: occured --> occurredDiego Biurrun2008-03-22
| | | | Originally committed as revision 12549 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: #include config.h before all other FFmpeg headers.Diego Biurrun2008-03-15
| | | | Originally committed as revision 12450 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove INFINITY as suggested by rich.Michael Niedermayer2008-03-01
| | | | Originally committed as revision 12289 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Print libavfilter version if it is enabled in configureVitor Sessak2008-02-27
| | | | Originally committed as revision 12259 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make parse_options() use parse_number_or_die().Stefano Sabatini2008-02-25
| | | | | | 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()Michael Niedermayer2008-02-21
| | | | | | 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 compiledDiego Biurrun2008-01-30
| | | | | | into FFmpeg. Instead warn that the resulting binary is unredistributable. Originally committed as revision 11666 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Print libavdevice version.Michael Niedermayer2008-01-10
| | | | Originally committed as revision 11484 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Update show_banner date.Benoit Fouet2008-01-02
| | | | Originally committed as revision 11368 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cmdutils.c uses FFMPEG_CONFIGURATION from config.h without directly includingRonald S. Bultje2007-09-29
| | | | | | | config.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.Stefano Sabatini2007-09-27
| | | | | | 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.Stefano Sabatini2007-08-20
| | | | | | 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 parseStefano Sabatini2007-08-13
| | | | | | | 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
* Replace the only occurrence of AVERROR_NOENT with AVERROR(ENOENT).Panagiotis Issaris2007-07-19
| | | | Originally committed as revision 9761 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Replace all occurrences of AVERROR_IO with AVERROR(EIO).Panagiotis Issaris2007-07-19
| | | | Originally committed as revision 9760 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Replace all occurrences of AVERROR_NOMEM with AVERROR(ENOMEM).Panagiotis Issaris2007-07-19
| | | | Originally committed as revision 9759 to svn://svn.ffmpeg.org/ffmpeg/trunk
* to be able to compile without HAVE_AV_CONFIG_HRonald S. Bultje2007-07-02
| | | | | | | | patch by Ronald S. Bultje: [rsbultje gmail com] original thread: [FFmpeg-devel] ffmpeg.c/cmdutils.c compilation date: 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 missedMåns Rullgård2007-06-24
| | | | 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.Diego Biurrun2007-06-10
| | | | Originally committed as revision 9273 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove redundant #include, avformat.h indirectly includes common.h.Diego Biurrun2007-06-09
| | | | Originally committed as revision 9261 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use url_fopen error code when opening input fileBenoit Fouet2007-05-10
| | | | | | handle 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.2Patrice Bensoussan2007-04-13
| | | | | | | | | patch by Patrice Bensoussan \ patrice dot bensoussan chez free dot fr Original thread: date: 04/05/2007 07:56 PM subject: [Ffmpeg-devel] [PATCH] Fix broken compilation on Mac OS X 10.2 due to OPT_INT64 support Originally committed as revision 8724 to svn://svn.ffmpeg.org/ffmpeg/trunk
* add OPT_INT64 optionBaptiste Coudurier2007-03-30
| | | | Originally committed as revision 8554 to svn://svn.ffmpeg.org/ffmpeg/trunk
* prevent exit missuseMichael Niedermayer2007-03-27
| | | | Originally committed as revision 8536 to svn://svn.ffmpeg.org/ffmpeg/trunk