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
2011-06-04Merge remote-tracking branch 'qatar/master'Michael Niedermayer
* qatar/master: (21 commits) build: simplify commands for clean target swscale: split swscale.c in unscaled and generic conversion routines. swscale: cosmetics. swscale: integrate (literally) swscale_template.c in swscale.c. swscale: split out x86/swscale_template.c from swscale.c. swscale: enable hScale_altivec_real. swscale: split out ppc _template.c files from main swscale.c. swscale: remove indirections in ppc/swscale_template.c. swscale: split out unscaled altivec YUV converters in their own file. mpegvideoenc: fix multislice fate tests with threading disabled. mpegts: Wrap #ifdef DEBUG and av_hex_dump_log() combination in a macro. build: Simplify texi2html invocation through the --output option. Mark some variables with av_unused Replace avcodec_get_pix_fmt_name() by av_get_pix_fmt_name(). svq3: Check negative mb_type to fix potential crash. svq3: Move svq3-specific fields to their own context. rawdec: initialize return value to 0. Remove unused get_psnr() prototype rawdec: don't leak option strings. bktr: get default framerate from video standard. ... Merged-by: Michael Niedermayer <michaelni@gmx.at>
2011-06-03build: simplify commands for clean targetMans Rullgard
Signed-off-by: Mans Rullgard <mans@mansr.com>
2011-05-24Remove avconfig.h and INCINSTDIRs on uninstall.Carl Eugen Hoyos
2011-04-01Revert "Remove support for stripping executables"Michael Niedermayer
People did not like this change. This reverts commit e0be794a71be25a350f68287ee291b4942bcb7d8.
2011-03-30Remove support for stripping executablesMans Rullgard
Stripping is generally best left to package management tools, and since unstripped copies are kept in the build tree, any arguments about saving space (no matter how insignificant) are void. Signed-off-by: Mans Rullgard <mans@mansr.com>
2010-12-07fix building test programs with gnu make 3.82Ramiro Polla
Test programs may be named either %.c or %-test.c. In some cases (ie. fft), both files exist and make has to choose which rule to use. Up to gnu make 3.81, rules were applied in definition order, in this case favouring the generic %.c rule from common.mak. gnu make 3.82 uses a shortest stem first order, applying definition order for same length stems. In this case, %-test.c must come first in order for make to pick the proper source file. Originally committed as revision 25918 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-17Remove $(MSG) override for install-lib targetsMåns Rullgård
This is no longer needed and causes incorrect output in some cases. Originally committed as revision 22583 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-09Reorder some make rulesMåns Rullgård
I like it better this way. Originally committed as revision 22397 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-09Remove superflous ifdef CONFIG_{STATIC,SHARED} in makefilesMåns Rullgård
Originally committed as revision 22396 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-09Simplify static/shared build rulesMåns Rullgård
Originally committed as revision 22394 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-09Move some make rules outside of eval'd blockMåns Rullgård
These rules use only global variables and thus do not need to be expanded. Originally committed as revision 22393 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-09cosmetic: move some makefile variable definitionsMåns Rullgård
Originally committed as revision 22392 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-08Add TESTOBJS make variable for extra objects used by test appsMåns Rullgård
Originally committed as revision 22335 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-08Define HAVE_AV_CONFIG_H for checkheaders in libsMåns Rullgård
Originally committed as revision 22332 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-08Define HAVE_AV_CONFIG_H when building test appsMåns Rullgård
Originally committed as revision 22330 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-08Define HAVE_AV_CONFIG_H only when building librariesMåns Rullgård
Originally committed as revision 22294 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-0710l: fix make install with only shared libsMåns Rullgård
Originally committed as revision 22280 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-06Fix install with shared libs on weird systemsMåns Rullgård
Originally committed as revision 22246 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-06Prettify make outputMåns Rullgård
This gives brief messages from make by default. For full command echoing, add V=1 to make command line. Originally committed as revision 22244 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-06Split install-headers target and simplify rulesMåns Rullgård
Originally committed as revision 22243 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-06Use mkdir -p to create directoriesMåns Rullgård
Originally committed as revision 22241 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-06Use $(RM) to delete filesMåns Rullgård
Originally committed as revision 22234 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-01-27Revert r21226, it was a joke:Ramiro Polla
Get one step closer to world domination. Remove "make uninstall". Originally committed as revision 21466 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-01-20Use $(CC_O) in %-test.o rulesMåns Rullgård
Originally committed as revision 21350 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-01-19Add rules to install generated headersMåns Rullgård
Originally committed as revision 21320 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-01-16Add symbol versioning for shared librariesMåns Rullgård
Based on patch by Reinhard Tartler <siretart tauware de> Originally committed as revision 21236 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-01-15Get one step closer to world domination.Ramiro Polla
Remove "make uninstall". Originally committed as revision 21226 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-10-29Add generic rules for building helpers with HOSTCCMåns Rullgård
Originally committed as revision 20412 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-10-28Makefile cosmeticsMåns Rullgård
Originally committed as revision 20410 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-08-23Fix dependency generation for yasm assembler filesMåns Rullgård
Originally committed as revision 19683 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-17Use CPPFLAGS when building testsMåns Rullgård
Originally committed as revision 19446 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-07-12Use LD for linking, default to same as CCMåns Rullgård
Originally committed as revision 19407 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-05-20Create shared libs correctly, fix mingw buildMåns Rullgård
Originally committed as revision 18884 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-04-20Remove example programs with a wildcard expression.Diego Biurrun
Originally committed as revision 18632 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-04-01Add $(ELIBS) to example/test app link commandMåns Rullgård
Originally committed as revision 18298 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-04-01Make examples and test progs depend on librariesMåns Rullgård
Originally committed as revision 18297 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-04-01Link tests/examples with -lfoo instead of libfoo.aMåns Rullgård
Originally committed as revision 18296 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-22Use $< automatic variable to simplify some commands.Diego Biurrun
Originally committed as revision 18143 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-12-13Remove other shared lib names from linker command line for shared libsMåns Rullgård
Originally committed as revision 16103 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-25Forgot to commit changes to subdir.mak in last revision.Ramiro Polla
Originally committed as revision 13380 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-10fix build with --build-suffixMåns Rullgård
Originally committed as revision 12776 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