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
2009-08-08Generate dependencies while compiling if supported by compilerMåns Rullgård
Originally committed as revision 19609 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-08-08Generate dependencies when object files are builtMåns Rullgård
Originally committed as revision 19608 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-07-28Replace BUILD_{SHARED,STATIC} with CONFIG_ counterpartsMåns Rullgård
Originally committed as revision 19527 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-07-23Move output redirection of deps generation from make rule to DEPEND_CMDMåns Rullgård
Originally committed as revision 19493 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-07-12Append the user CPPFLAGS value to the CPPFLAGS used for compilation,Stefano Sabatini
rather than prepend it. This way there is the guarantee that the included headers are those in the FFmpeg sources, rather than pre-installed headers referenced by the user CPPFLAGS. Originally committed as revision 19416 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-07-12Pass ASFLAGS to assembler instead of CFLAGSMåns Rullgård
Originally committed as revision 19412 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-07-12Allow unusual ways of specifying compiler output fileMåns Rullgård
Some compilers do not use the typical -c -o foo.o style. This allows compiler-specific equivalents to be set by the configure script. Originally committed as revision 19409 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-07-12Set CFLAGS directly in config.mak instead of using OPTFLAGSMåns Rullgård
Originally committed as revision 19406 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-07-12Separate C preprocessor flags into CPPFLAGS variableMåns Rullgård
Originally committed as revision 19404 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-05-29Move *.map from LIBSUFFIXES to CLEANSUFFIXES, executables on OS/2 haveDave Yeo
generated map files as well, so map files need to be removed in all places where executables are removed. patch by Dave Yeo, daveryeo telus net Originally committed as revision 18981 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-05-20Fix building from within subdirsMåns Rullgård
Originally committed as revision 18881 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-04-13Move addition of MMX-OBJS to OBJS into common.mak instead of duplicating it.Diego Biurrun
Originally committed as revision 18478 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-04-01Always use -L flags for all subdirsMåns Rullgård
Originally committed as revision 18295 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-04-01Move make rules applicable only to subdirs into subdir.makMåns Rullgård
Originally committed as revision 18294 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-03-29Generalize example target rule in common.mak so that it sets a -example$(EXESUF)Diego Biurrun
suffix for all example files instead of doing this in individual Makefiles. Originally committed as revision 18217 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-03-26Use a wildcard match instead of a list to remove test programs.Diego Biurrun
This is robust against renames and also removes test programs not (yet) hooked up in the main Makefiles. Originally committed as revision 18193 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-03-25Move adding the '-test$(EXESUF)' suffix to test programs into common.mak.Diego Biurrun
Originally committed as revision 18189 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-03-25prettyprinting cosmeticsDiego Biurrun
Originally committed as revision 18188 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-03-23Rename 'tests' target to 'testprogs'. It is too easily confused with theDiego Biurrun
'test' target and a directory named tests exists. Originally committed as revision 18165 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-03-23Add rule for building API example programs.Diego Biurrun
Originally committed as revision 18161 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-03-13Mark all clean targets as phony.Diego Biurrun
Originally committed as revision 17950 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-03-06Compile .S files with $(AS), set it in configureMåns Rullgård
Assembler files using the GNU syntax need to be processed by gcc, whichever compiler is used for C files. Originally committed as revision 17827 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-03-03Do not add -D_FILE_OFFSET_BITS=64 and -D_LARGEFILE_SOURCE unconditionally toDiego Biurrun
CFLAGS. Apparently there are some systems that do not like these definitions. Originally committed as revision 17755 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-03-02version.h should depend on config.mak.Diego Biurrun
The extra version string that is passed to configure is recorded in config.mak and changes to config.mak can therefore make version.h rebuilds necessary. Originally committed as revision 17730 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-01-26Fix version.h dependency on version.shMåns Rullgård
Originally committed as revision 16801 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-01-26version.h depends on version.sh.Diego Biurrun
Originally committed as revision 16799 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-01-12Extend 'checkheaders' target to architecture-specific subdirectories.Diego Biurrun
Originally committed as revision 16559 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-12-22Rename libavcodec/i386/ --> libavcodec/x86/.Diego Biurrun
It contains optimizations that are not specific to i386 and libavutil uses this naming scheme already. Originally committed as revision 16270 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-10-25Use OBJS variable for all object filesMåns Rullgård
There is no longer any need to differentiate the object files by source type. Originally committed as revision 15708 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-10-25Remove unused SRCS make variableMåns Rullgård
Originally committed as revision 15707 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-09-27Add support for passing a version string to configure that is appended toDiego Biurrun
FFmpeg's version string output. This can be used by distributions to mark their packages as being modified versions without hacking the sources. Originally committed as revision 15433 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-08-1310000l, revert mistakely commited and unrelated hunk.Michael Niedermayer
Originally committed as revision 14730 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-08-13Move -D_ISOC9X_SOURCE to configure so its available to all tests.Michael Niedermayer
Originally committed as revision 14729 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-08-12yasm buildsystemLoren Merritt
Originally committed as revision 14696 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-07-09regenerate dependencies when building object filesMåns Rullgård
Originally committed as revision 14143 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-06-19enable version.h to be created from subdirsMåns Rullgård
Originally committed as revision 13819 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-06-16Generate pkg-config files in each library subdirectory so that they doDiego Biurrun
not clutter the root of the source tree. Originally committed as revision 13780 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-05-26Revert "Add version information to DLLs."Måns Rullgård
Revert "Forgot to commit changes to subdir.mak in last revision." Originally committed as revision 13426 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-05-25Add version information to DLLs.Jeremy Kolb
Patch by Jeremy Kolb. Originally committed as revision 13379 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-05-09Remove -I flags pointing to local paths, they are no longer necessary.Diego Biurrun
Originally committed as revision 13100 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-04-18fix make tests in subdirsMåns Rullgård
Originally committed as revision 12893 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-04-17fix building of test programs (make tests)Måns Rullgård
Originally committed as revision 12867 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-04-15Add DIRS variable to the list of variables to be cleared instead ofDiego Biurrun
unsetting it manually. Originally committed as revision 12825 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-04-13Clear DIRS variable in common.mak, so it does not have to be cleared inDiego Biurrun
each subdirectory Makefile. Originally committed as revision 12803 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-04-13Remove all dependency files on distclean.Diego Biurrun
Originally committed as revision 12802 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-04-13Generate the list of files to clean in subdirectories in common.mak.Diego Biurrun
This way, it can be used from all directories. Originally committed as revision 12800 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-04-13Split CLEANFILES variable into CLEANSUFFIXES and LIBSUFFIXES.Diego Biurrun
Originally committed as revision 12799 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-04-10move DEP_LIBS to common.makMåns Rullgård
Originally committed as revision 12777 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-04-10generate separate dependency files per object fileMåns Rullgård
Originally committed as revision 12775 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-04-08replace some ifeq with prettier ifdefMåns Rullgård
Originally committed as revision 12764 to svn://svn.ffmpeg.org/ffmpeg/trunk