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
2012-07-04Create version.h headers for libraries that lack themDiego Biurrun
2012-05-07build: cosmetics: Split HEADERS/OBJS/PROGS lists into one entry per line.Diego Biurrun
2012-04-12build: Move all arch OBJS declarations into arch subdirectory Makefiles.Diego Biurrun
2012-04-12build: Consistently handle conditional compilation for all optimization OBJS.Diego Biurrun
2012-03-26build: Only clean the architecture subdirectory we build for.Diego Biurrun
This allows simplifying the Makefiles; it is no longer necessary to register arch subdirectory Makefiles, just putting them in place is enough.
2012-03-26build: prettyprinting cosmeticsDiego Biurrun
2012-02-08Remove Sun medialib glue code.Diego Biurrun
It is obscure, most likely unused and not bit-exact compared to libavcodec due to a different IDCT transform algorithm.
2012-02-07swscale: split C output functions into separate file.Ronald S. Bultje
Signed-off-by: Diego Biurrun <diego@biurrun.de>
2012-02-07swscale: Split C input functions into separate file.Ronald S. Bultje
Signed-off-by: Diego Biurrun <diego@biurrun.de>
2012-02-03win64: add a XMM clobber test configure option.Ronald S. Bultje
This will be useful to test more aggressively for failures to mark XMM registers as clobbered in Win64 builds, and prevent regressions thereof. Based on a patch by Ramiro Polla <ramiro.polla@gmail.com>
2012-01-09swscale: convert yuy2/uyvy/nv12/nv21ToY/UV from inline asm to yasm.Ronald S. Bultje
Also implement SSE2/AVX variants.
2012-01-04swscale: split scale.asm.Ronald S. Bultje
scale.asm keeps horizontal scaling functions, whereas output.asm gets the vertical scaling/output functions.
2012-01-04swscale: add MMX files to MMX-OBJS instead of OBJS.Ronald S. Bultje
2011-12-13build: move inclusion of subdir.mak to main subdir loopMans Rullgard
Signed-off-by: Mans Rullgard <mans@mansr.com>
2011-09-13sws: implement MMX/SSE2/SSSE3/SSE4 versions for horizontal scaling.Ronald S. Bultje
Speed: from 3.9x to 9.6x speed improvement over C, and some small (up to 15%) speed improvements over existing MMX code (particularly for bigger filters).
2011-06-28build: include sub-makefiles using full path instead of symlinksMans Rullgard
Signed-off-by: Mans Rullgard <mans@mansr.com>
2011-06-25build: Remove redundant config.mak includes from subdirectory Makefiles.Diego Biurrun
Calling Make from subdirectories is not supported and config.mak has multiple inclusion guards anyway, so the top-level include is enough.
2011-06-03swscale: split swscale.c in unscaled and generic conversion routines.Ronald S. Bultje
This duplicates the function fillPlane().
2011-06-03swscale: split out x86/swscale_template.c from swscale.c.Ronald S. Bultje
2011-06-03swscale: split out ppc _template.c files from main swscale.c.Ronald S. Bultje
2011-06-03swscale: split out unscaled altivec YUV converters in their own file.Ronald S. Bultje
2011-04-15swscale: move away x86 specific code from rgb2rgbLuca Barbato
Keep only the plain C code in the main rgb2rgb.c and move the x86 specific optimizations to x86/rgb2rgb.c Change the initialization pattern a little so some of it can be factorized to behave more like dsputils.
2011-02-15Merge libavcore into libavutilReinhard Tartler
It is pretty hopeless that other considerable projects will adopt libavutil alone in other projects. Projects that need small footprint are better off with more specialized libraries such as gnulib or rather just copy the necessary parts that they need. With this in mind, nobody is helped by having libavutil and libavcore split. In order to ease maintenance inside and around FFmpeg and to reduce confusion where to put common code, avcore's functionality is merged (back) to avutil. Signed-off-by: Reinhard Tartler <siretart@tauware.de>
2010-08-08swscale-test: get strides using av_fill_image_linesizes() from libavcoreRamiro Polla
Originally committed as revision 31948 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
2010-05-04alternative LGPL-licensed, MMX-optimized YUV to RGB conversion routinesDiego Biurrun
written by Kostya Shishkov Originally committed as revision 31135 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
2010-01-27Rename swscale-example to swscale-test, to better reflect the intendedStefano Sabatini
use of the program. Originally committed as revision 30439 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
2010-01-24Split swscale.c into scaler code (swscale.c) and utility code (utils.c).Ramiro Polla
Originally committed as revision 30411 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
2009-04-18Rename swscale_avoption.c to options.c.Stefano Sabatini
Consistent with lavc and lavf. Originally committed as revision 29188 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
2009-04-13Move addition of MMX-OBJS to OBJS into common.mak instead of duplicating it.Diego Biurrun
Originally committed as revision 29175 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
2009-04-01Make examples and test progs depend on librariesMåns Rullgård
Originally committed as revision 29119 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
2009-03-31Add missing $(EXESUF) to example/test program dependency declaration.Diego Biurrun
Originally committed as revision 29114 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
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 29100 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
2009-03-28Move bfin specific code to its subdir.Ramiro Polla
Originally committed as revision 29079 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
2009-03-26Rename cs_test.c --> colorspace-test.c. This is more consistent with the namesDiego Biurrun
of other test programs and more descriptive of what the program does. Originally committed as revision 29067 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
2009-03-26Move yuv2rgb code to subdirs.Ramiro Polla
Originally committed as revision 29063 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
2009-03-25swscale-example is an API example, not a test program.Diego Biurrun
Originally committed as revision 29056 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
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 29039 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
2009-03-23Remove unnecessary CLEANFILES declaration. Test programs do not require it.Diego Biurrun
Originally committed as revision 29038 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
2009-02-25Rename yuv2rgb2.c --> yuv2rgb.c.Diego Biurrun
Originally committed as revision 28723 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
2009-02-22New LGPLed YUV2RGB table generator for SwScalerKostya Shishkov
Originally committed as revision 28700 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
2008-11-21cosmetics: Consistently place HEADERS before OBJS in all Makefiles.Diego Biurrun
Originally committed as revision 27970 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
2008-11-04Merge ARCH_BFIN lines.Diego Biurrun
Originally committed as revision 27889 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
2008-11-04Add tests target for libswscale test programs.Diego Biurrun
Originally committed as revision 27888 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
2008-11-04Remove forgotten ASM_OBJS in libswscaleMåns Rullgård
Originally committed as revision 27887 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
2008-10-27rgb2rgb.h was not really intended to be a public header, thus remove it.Michael Niedermayer
Originally committed as revision 27836 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
2008-07-10Split AVOption/AVClass in a separate file. SoC Patch from Keiji CostantiniLuca Barbato
Originally committed as revision 27244 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
2008-06-08OBJS should end in .o, not .c.Diego Biurrun
Originally committed as revision 27035 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
2008-06-08VIS OBJS should end in .o, not .c; patch by Jan Knutar, jknutar nic fi.Jan Knutar
Originally committed as revision 27034 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
2008-05-05cosmetics: sort lines (correctly)Diego Biurrun
Originally committed as revision 26673 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
2008-05-05Cosmetics: reorder and align targetsLuca Barbato
Originally committed as revision 26671 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale