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-03-08Error on missing function prototypes with gccMåns Rullgård
This makes it an error to not have a prototype in scope for a function with external linkage. The flag is only enabled for gcc due to -Werror=type not working with all compilers. Originally committed as revision 22313 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-07Use -Werror=implicit only with gccMåns Rullgård
Some other compilers turn too many warnings into errors with this flag. Originally committed as revision 22276 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-07Fix clang sysroot flagDavid Conrad
Older versions accepted both with and without an '=', but newer versions require the '=' to be omitted Originally committed as revision 22274 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-07Error on implicit function declarationsMåns Rullgård
Turning on -Werror=implicit makes implicit function declarations an error with supported compilers. Originally committed as revision 22269 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-06Fix make installMåns Rullgård
Originally committed as revision 22245 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-06Add INSTALL makefile variableMåns Rullgård
Originally committed as revision 22242 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-06Add CP make variableMåns Rullgård
Originally committed as revision 22240 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-06Add YASMDEP variable; use for deps on yasm filesMåns Rullgård
Originally committed as revision 22239 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-02Make lsp a separate configurable and select it from codecs needing itMåns Rullgård
Originally committed as revision 22143 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-02-24Add -Wmissing-prototypes to CFLAGS if available.Diego Biurrun
Originally committed as revision 22009 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-02-23Fix snow encoder dependenciesDaniel Verkamp
Originally committed as revision 21985 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-02-23Fix svq1 encoder dependenciesDaniel Verkamp
Originally committed as revision 21984 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-02-23Make -benchmark also print the maximum memory usage if possible.Reimar Döffinger
Originally committed as revision 21973 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-02-23Add an RTSP muxerMartin Storsjö
Originally committed as revision 21971 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-02-22Revert "Suppress icc warnings about unknown attributes"Måns Rullgård
This reverts r21884. Apparently people want those warnings. Originally committed as revision 21954 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-02-22Suppress armcc warnings about unknown attributesMåns Rullgård
Originally committed as revision 21950 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-02-21Add FFprobe tool.Stefano Sabatini
This is a simplified / cleaned-up version of the SourceForge program: http://sourceforge.net/projects/ffprobe/ Syntax / features may be different, in particular the options -show_packets and -show_frames are not yet supported in this version. Originally committed as revision 21936 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-02-18Suppress icc warnings about unknown attributesMåns Rullgård
Originally committed as revision 21884 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-02-18configure: allow setting strip tool with --stripMåns Rullgård
Originally committed as revision 21869 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-02-17PPC and x86 support aligning variables on stackMåns Rullgård
Originally committed as revision 21865 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-02-17Add LOCAL_ALIGNED() macro for declaring aligned local arraysMåns Rullgård
Originally committed as revision 21864 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-02-12Add "tomi" architectureMåns Rullgård
Originally committed as revision 21767 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-02-12configure: require --arch and --target-os when cross-compilingMåns Rullgård
Originally committed as revision 21766 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-02-12ffplay depends on rdftMåns Rullgård
Spotted by Ramiro. Originally committed as revision 21765 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-02-12configure: add missing mdct depsMåns Rullgård
Originally committed as revision 21763 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-02-12configure: make mdct and rdft select fft and update other depsMåns Rullgård
Originally committed as revision 21762 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-02-11Stricter check for math.h functionsMåns Rullgård
GCC is sometimes able to optimise constant calls to these functions, incorrectly indicating that they exist. Unoptimised calls will then fail to link. Originally committed as revision 21749 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-02-11configure: fix cosmetic typo in check_mathfuncMåns Rullgård
Originally committed as revision 21748 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-02-10Special check for math.h functionsMåns Rullgård
These are often, contrary to standards, implemented only as macros or compiler-builtin functions without an actual symbol definition. Originally committed as revision 21734 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-10configure: allow 'none' as target OSMåns Rullgård
Originally committed as revision 21732 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-02-06libgsm installs headers in a subdirectory, use gsm.h from that subdirectory.Reinhard Tartler
Approved by Diego at FOSDEM. Originally committed as revision 21659 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-01-31Bink Audio decoderPeter Ross
Originally committed as revision 21570 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-01-31Add CONFIG_SRAM to allow use of on-chip SRAM on some systemsMåns Rullgård
Some SoCs have a small amount of on-chip SRAM which may be used for frequently used code or data. When enabled, this option will allow FFmpeg to use such facilities where supported. Originally committed as revision 21564 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-01-30Disable Altivec for processors older than G4.Carl Eugen Hoyos
Originally committed as revision 21546 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-01-30PPC: allow --cpu=E500[v2]Ancoron Luciferis
Patch by Ancoron Luciferis <ancoron chaoslayer de> Originally committed as revision 21544 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-01-30configure: match PPC CPU types case insensitivelyMåns Rullgård
Originally committed as revision 21543 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-01-30Set target_path to $(CURDIR)Måns Rullgård
CURDIR is updated by make -C, PWD is not. Originally committed as revision 21542 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-01-29Revert commits 21227, 21441, and 21442. None of this is necessary now that weRamiro Polla
load the getaddrinfo family of functions through GetProcAddress. Also, there is currently no feature that gets fixed in Win98 through the use of KernelEx. Originally committed as revision 21530 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-01-29Set target_path to $(PWD) by defaultMåns Rullgård
This simplifies configuring for the most common remote testing setup. Originally committed as revision 21525 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-01-29Check for may_alias gcc attribute supportMåns Rullgård
Originally committed as revision 21522 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-01-28Add --malloc-prefix to apply a prefix to malloc, free etcMåns Rullgård
This makes it easy to use a replacement allocator instead of the system default one. Originally committed as revision 21509 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-01-28configure: consolidate compiler-specific optimisation settingsMåns Rullgård
In the main per-compiler section, set speed_cflags and size_cflags with suitable values. Later one or the other is added to CFLAGS. Originally committed as revision 21499 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-01-27Emit CONFIG_AVUTIL for completenessMåns Rullgård
Originally committed as revision 21475 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-01-27Allow disabling of lavc, lavf, lavd, and lswsMåns Rullgård
Originally committed as revision 21468 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-01-25configure: fix --cpu=noconaMåns Rullgård
Use x86_64_suggest instead of _select as otherwise fast_cmov being disabled (as it should be for nocona) also disables x86_64 breaking the build. Originally committed as revision 21446 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-01-25Check if dxva2api.h is recent enough to compile vc1_dxva2_hwaccel.Ramiro Polla
Originally committed as revision 21444 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-01-25Check for getaddrinfo in the winsock headers.Martin Storsjö
This makes us link directly to getaddrinfo if it is available, making binaries incompatible with anything prior to windows XP. If compatibility is desired, compile with --target-os=mingw32-prexp. Patch by Martin Storsjö <martin at martin dot st>. Originally committed as revision 21442 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-01-25Only define _WIN32_WINNT=0x0501 if $target_os = "mingw32".Martin Storsjö
If compatibility with pre-XP versions is desired, use --target-os=mingw32-prexp Patch by Martin Storsjö <martin at martin dot st>. Originally committed as revision 21441 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-01-24VC-1/WMV3 DXVA2 implementationLaurent Aimar
It allows VLD VC-1/WMV3 decoding using DXVA2 (GPU assisted decoding API under VISTA and Windows 7). It is implemented by using AVHWAccel API. Originally committed as revision 21424 to svn://svn.ffmpeg.org/ffmpeg/trunk