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-03-30Move generated file aynth1.sw to the data subdirectory. Thus it does not haveDiego Biurrun
to be removed separately and there is less clutter in the tests directory. Originally committed as revision 18246 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-03-30Rename regression.sh --> codec-regression.sh. Now all regression test scriptsDiego Biurrun
carry the regression test they run as prefix in their name. Originally committed as revision 18245 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-03-30Rename server-regression.sh --> ffserver-regression.sh for consistency.Diego Biurrun
Originally committed as revision 18243 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-03-30Rename servertest target to ffservertest.Diego Biurrun
Originally committed as revision 18242 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-03-30Rename libav.regression.ref --> lavf.regression.ref.Diego Biurrun
This matches the new name of the test target. Originally committed as revision 18228 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-03-30Rename libavtest target to lavftest to better express what it tests.Diego Biurrun
Also rename related variables to match the new name. Originally committed as revision 18227 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-03-30Rename test.conf --> ffserver.conf, the new name is more meaningful.Diego Biurrun
Originally committed as revision 18226 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-03-29Rename seek_test.sh --> seek-regression.sh for greater consistency.Diego Biurrun
Originally committed as revision 18220 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-03-27Move output_example.c --> libavformat/output-example.c.Diego Biurrun
The libavformat directory is a better place for a libavformat API example. Originally committed as revision 18199 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-03-26Remove unnecessary CFLAGS variable from output_example link command.Diego Biurrun
Originally committed as revision 18197 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-03-26Removing example programs is already handled by the generic clean commands,Diego Biurrun
so there is no need to remove output_example individually. Originally committed as revision 18196 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-03-25Clear some more variables that are used on subdir Makefiles.Ramiro Polla
Originally committed as revision 18180 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-20PCX encoder that handles 1-, 8-, and 24-bpp pixfmts.Daniel Verkamp
Patch by Daniel Verkamp, daniel drv nu Originally committed as revision 18077 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-03-13Remove 'lib' and 'swscale-error' from list of phony targets.Diego Biurrun
Both targets no longer exist. Originally committed as revision 17951 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-13Add "testclean" target to .PHONYReimar Döffinger
Originally committed as revision 17948 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-03-11mxf and mxf d10 regression testsBaptiste Coudurier
Originally committed as revision 17934 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-03-09Allow different executable suffix for host and targetMåns Rullgård
Originally committed as revision 17885 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-03-04Remove old scaler.Michael Niedermayer
Originally committed as revision 17786 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-03-03Remove deprecated vhook subsystem.Diego Biurrun
Originally committed as revision 17769 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-02-21Bail out if regtest-flashsv is run but zlib is not enabled.Diego Biurrun
Originally committed as revision 17486 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-02-21Fix swscale-error vs. swscale_error typo; it is marked as the former in .PHONY.Diego Biurrun
Originally committed as revision 17485 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-02-21Declare version.h dependencies explicitlyMåns Rullgård
Originally committed as revision 17483 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-01-26Add (un)installation targets for ffpresets using the new DATADIR variableRobert Swain
Originally committed as revision 16793 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-01-10Add a separate 'testclean' rule to clean regression test data withoutFrancesco Cosoleto
removing compiled files. patch by Francesco Cosoleto, cosoleto gmail com Originally committed as revision 16518 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-11-23Run regression tests on target system.Måns Rullgård
Originally committed as revision 15915 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-11-23Build regression test data generators using HOSTCCMåns Rullgård
Originally committed as revision 15914 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-10-30Add check target to run both tests and checkheaders targets.Diego Biurrun
Originally committed as revision 15750 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-09-27Add alltools target to build all the tools/ stuff.Diego Biurrun
Originally committed as revision 15438 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-09-13Switch regression tests to swscale.Michael Niedermayer
Plain C, x86-32 and -64 have been tested and should work, other archs that had asm optmizations in swscale likely will need some fixes to either fall back on C if SWS_BITEXACT is set or make the asm match C. This also disables the PAL8 test as neither swscale nor the old scaler really support PAL8 output, imgconvert supported a fixed 666 palette as output and swscale supports fixed 884 and 422. Originally committed as revision 15305 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-08-25restore accidently deleted fileJustin Ruggles
Originally committed as revision 14954 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-08-251000l to me. committed to wrong repo. revert last commit.Justin Ruggles
Originally committed as revision 14953 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-08-09PCM regression tests.Peter Ross
Originally committed as revision 14671 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-07-17Move up swscale_error target so that regression tests error out immediately.Diego Biurrun
Originally committed as revision 14261 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-06-06Remove Fabrice's copyright from the Makefiles. They have been entirelyDiego Biurrun
rewritten since they were originally created. Originally committed as revision 13675 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-05-27Do not remove gmon.out on clean, we never create it.Diego Biurrun
Originally committed as revision 13453 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-05-27Remove TAGS target cruft.Diego Biurrun
Originally committed as revision 13451 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-05-27Simplify phony target declaration.Diego Biurrun
Originally committed as revision 13450 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-05-27Rename test-server target to servertest for consistency with other test targets.Diego Biurrun
Originally committed as revision 13449 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-04-17clear TESTS variable between subdirsMåns Rullgård
Originally committed as revision 12866 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-11ffplay.d needs SDL_CFLAGSMåns Rullgård
Originally committed as revision 12787 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-04-10correct soname for vhooksMåns Rullgård
Originally committed as revision 12785 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-04-10save DEP_LIBS before processing subdirsMåns Rullgård
Originally committed as revision 12784 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