Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mpc-hc/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2011-06-27build: factor out the .c and .S compile commands as a macroMans Rullgard
These commands have the same form, and using a common macro allows it to be used elsewhere without further duplication. Signed-off-by: Mans Rullgard <mans@mansr.com>
2011-06-23build: remove SRC_PATH_BARE variableMans Rullgard
Setting SRC_PATH to "." when building in-tree removes the need for a quoted version of the source path since out-of-tree builds are not possible if the pathname contains spaces. Signed-off-by: Mans Rullgard <mans@mansr.com>
2011-06-23build: move basic rules and variables to main MakefileMans Rullgard
Signed-off-by: Mans Rullgard <mans@mansr.com>
2011-06-23build: move special targets to end of main MakefileMans Rullgard
Signed-off-by: Mans Rullgard <mans@mansr.com>
2011-06-23build: move documentation rules to doc/MakefileMans Rullgard
Signed-off-by: Mans Rullgard <mans@mansr.com>
2011-06-23build: move test rules to tests/MakefileMans Rullgard
Signed-off-by: Mans Rullgard <mans@mansr.com>
2011-06-14build: move vpath directives to main MakefileMans Rullgard
Signed-off-by: Mans Rullgard <mans@mansr.com>
2011-06-14build: move ALLFFLIBS to a more logical placeMans Rullgard
Signed-off-by: Mans Rullgard <mans@mansr.com>
2011-06-11build: fix "make install" with documentation disabledMans Rullgard
Signed-off-by: Mans Rullgard <mans@mansr.com>
2011-06-11build: simplify some conditional targetsMans Rullgard
Use intermediate targets instead of variables for conditional parts of "all" and "install" targets. Signed-off-by: Mans Rullgard <mans@mansr.com>
2011-06-07build: make rule for linking ff* apply only to these targetsMans Rullgard
This ensures that the special link command using cmdutils.o only applies to the targets it should. Signed-off-by: Mans Rullgard <mans@mansr.com>
2011-06-07build: rearrange some lines in a more logical wayMans Rullgard
Signed-off-by: Mans Rullgard <mans@mansr.com>
2011-06-06build: clean up .PHONY listsMans Rullgard
This removes nonexisting targets from phony lists and puts them all in one place. Signed-off-by: Mans Rullgard <mans@mansr.com>
2011-06-06build: move all (un)install* target aliases to toplevel MakefileMans Rullgard
Signed-off-by: Mans Rullgard <mans@mansr.com>
2011-06-03build: Simplify texi2html invocation through the --output option.Diego Biurrun
The --output option is available in texi2html since at least version 1.78.
2011-05-29build: remove BUILD_ROOT variableMans Rullgard
This variable is unnecessary as absolute paths are not required. Signed-off-by: Mans Rullgard <mans@mansr.com>
2011-05-26build: Remove generated .version file on distclean.Diego Biurrun
2011-05-18Remove unused make variable SEEK_REFFILEMans Rullgard
Signed-off-by: Mans Rullgard <mans@mansr.com>
2011-05-18fate: remove redundant aref and vref referencesMans Rullgard
The ref targets are included in the FATE_[AV]CODEC lists created by configure so they do not need to be listed separately in the makefile. Filter them out when setting dependencies to avoid make warnings about circular deps. Signed-off-by: Mans Rullgard <mans@mansr.com>
2011-05-18fate: run aref and vref as regular testsMans Rullgard
These tests create reference files used for psnr calculation in the other codec tests. Treating them as (mostly) regular tests simplifies the makefile and makes them visible in the fate reports. The latter makes errors in these runs easier to identify. Signed-off-by: Mans Rullgard <mans@mansr.com>
2011-05-03Implement fate-rsync targetReinhard Tartler
2011-04-22FATE: allow forcing thread-type when doing threaded fate runs.Ronald S. Bultje
Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
2011-04-20Makefile: Include dependencies for test tools, tooMartin Storsjö
This makes seek_test to be rebuilt when its dependencies has changed. The changes to the dependencies didn't usually matter in practice, but the introduction of side data in AVPacket required a recompilation. Signed-off-by: Martin Storsjö <martin@martin.st>
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>
2011-03-23fate: add support for multithread testingLuca Barbato
Add a THREADS variable to fate calls.
2011-03-18get rid of the last svn mentionsJanne Grunau
2011-03-16replace FFMPEG with LIBAV in FFMPEG_CONFIGURATIONJanne Grunau
also update the multiple inclusion guards in config.h|mak
2011-02-20Makefile: include deps from tools directoryMans Rullgard
This ensures the tools are rebuilt when necessary. Specifically, lavfi-showfiltfmts was sometimes not rebuilt causing spurious test failures. Signed-off-by: Mans Rullgard <mans@mansr.com>
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>
2011-02-12Allow "make clean" to clean files in toolsStefano Sabatini
Signed-off-by: Mans Rullgard <mans@mansr.com>
2011-02-12Add lavfi-showfiltfmts and graph2dot to $(TOOLS)Stefano Sabatini
Allow make clean to remove the corresponding binaries. Fix issue 2162. Signed-off-by: Mans Rullgard <mans@mansr.com>
2011-02-11VP8: ARM optimised decode_block_coeffs_internalMans Rullgard
Approximately 5% faster on Cortex-A8. Signed-off-by: Mans Rullgard <mans@mansr.com>
2011-02-01Makefile: remove unused variable ALLHTMLPAGESMans Rullgard
Signed-off-by: Mans Rullgard <mans@mansr.com>
2011-02-01Makefile: build docs only for enabled tools; fix docs dependenciesMans Rullgard
This makes "make documentation" build the man/html pages only for the tools enabled in the build. It also fixes the dependency tracking for the built man pages. Signed-off-by: Mans Rullgard <mans@mansr.com>
2011-02-01Auto-generate dependencies for documentationMans Rullgard
Signed-off-by: Mans Rullgard <mans@mansr.com>
2011-01-29doc: modify style for texi2html 1.78+Janne Grunau
The generated HTML files are similar to the ones generated with texi2html 1.56k used on the website. Tested with texi2html 1.78 and 5.0. 1.78 is the minimal recommended version. The removed @sp from the titlepage section were ignored until texi2html 5.0. If not removed the pages generated by 5.0 will have ugly empty space around the title.
2011-01-25Makefile: fix cleaning of tools in tests directoryMans Rullgard
The variable TESTPROGS is reset by the library makefiles, use another name. Signed-off-by: Mans Rullgard <mans@mansr.com>
2011-01-25Fix ALLPROGS_G so that *_g binaries get cleaned properlyDaniel Verkamp
Signed-off-by: Mans Rullgard <mans@mansr.com>
2011-01-23Makefile: simplify test tools handlingMans Rullgard
Signed-off-by: Mans Rullgard <mans@mansr.com>
2011-01-21Makefile: simplify setting of some variablesMans Rullgard
Signed-off-by: Mans Rullgard <mans@mansr.com>
2011-01-09Add demuxers.texi file.Stefano Sabatini
Originally committed as revision 26282 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-12-27Metadata muxerAnton Khirnov
Dumps all metadata to a text file for easy manual editing. Originally committed as revision 26101 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-12-23Add dependency for the libavfitler.html file.Stefano Sabatini
Originally committed as revision 26078 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-12-14Simplify texi files naming: ff*-doc.texi -> ff*.texi.Stefano Sabatini
Originally committed as revision 26006 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-12-11Define PODPAGES in Makefile, and make them depend onStefano Sabatini
fftools-common-opts.texi. Fix pod files updating when fftools-common-opts.texi is changed. Originally committed as revision 25928 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-12-07Fix building of object files in tools/Ramiro Polla
Fixes issue issue2408. Originally committed as revision 25905 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-11-08Add a file for bitstream filters documentation.Stefano Sabatini
Based on a patch by Nicolas George <@var{name}.@var{surname}@@normalesup.@code{org}>. Originally committed as revision 25709 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-11-03Add eval.texi file.Stefano Sabatini
Originally committed as revision 25665 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-08-26fate: print list of tests with "make fate-list"Måns Rullgård
Originally committed as revision 24947 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-08-23MP3 float decoder FATE testsVitor Sessak
Originally committed as revision 24880 to svn://svn.ffmpeg.org/ffmpeg/trunk