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
2017-05-15build: add support for building .cu files via nvccTimo Rothenpieler
Original work by Yogender Gupta <ygupta@nvidia.com>
2017-05-07build: Ignore generated .version filesDiego Biurrun
(cherry picked from commit 740b0bf03b4bb8b0a0e964750817ac0363a33c55) Signed-off-by: James Almer <jamrial@gmail.com>
2017-05-03Merge commit '11a9320de54759340531177c9f2b1e31e6112cc2'Clément Bœsch
* commit '11a9320de54759340531177c9f2b1e31e6112cc2': build: Move build-system-related helper files to a separate subdirectory "ffbuild" directory name is used instead of "avbuild". Merged-by: Clément Bœsch <u@pkh.me>
2016-12-22build: Move build-system-related helper files to a separate subdirectoryDiego Biurrun
This unclutters the top-level directory and groups related files together.
2016-06-26Merge commit '6641819feedb086ebba3d2be89b8d33980f367e1'Hendrik Leppkes
* commit '6641819feedb086ebba3d2be89b8d33980f367e1': build: Ignore generated mapfile and remove it on distclean Merged-by: Hendrik Leppkes <h.leppkes@gmail.com>
2016-06-22Merge commit 'a6a750c7ef240b72ce01e9653343a0ddf247d196'Clément Bœsch
* commit 'a6a750c7ef240b72ce01e9653343a0ddf247d196': tests: Move all test programs to a subdirectory Merged-by: Clément Bœsch <clement@stupeflix.com>
2016-06-22Merge commit '257f00ec1ab06a2a161f535036c6512f3fc8e801'Clément Bœsch
* commit '257f00ec1ab06a2a161f535036c6512f3fc8e801': Split global .gitignore file into per-directory files Merged-by: Clément Bœsch <clement@stupeflix.com>
2016-05-27build: Ignore generated mapfile and remove it on distcleanDiego Biurrun
2016-05-13tests: Move all test programs to a subdirectoryDiego Biurrun
2016-05-13Split global .gitignore file into per-directory filesDiego Biurrun
2016-05-12Merge commit '06edef3d5e072ef3c4face9ce946d2d9c36cc477'Derek Buitenhuis
* commit '06edef3d5e072ef3c4face9ce946d2d9c36cc477': Generate the lists of enabled protocols/bsfs from configure. Merged-by: Derek Buitenhuis <derek.buitenhuis@gmail.com>
2016-04-19Generate the lists of enabled protocols/bsfs from configure.Anton Khirnov
2016-04-17Merge commit '48362ceadeb2eb5286ae94ef7f9542d990ff7ec7'Derek Buitenhuis
* commit '48362ceadeb2eb5286ae94ef7f9542d990ff7ec7': doc: Update paths to match new examples location Merged-by: Derek Buitenhuis <derek.buitenhuis@gmail.com>
2016-03-23doc: Update paths to match new examples locationDiego Biurrun
2016-03-22fate: add audiomatchMichael Niedermayer
Testset provided by Justin Greer <justin@zencoder.com> Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
2016-01-25build: use a link instead of changing current directory when compilingAndreas Cadhalpun
If links don't work, fall back to using the full source path as was previously done. This should fix build failures with MSVC. Reviewed-by: Hendrik Leppkes <h.leppkes@gmail.com> Signed-off-by: Andreas Cadhalpun <Andreas.Cadhalpun@googlemail.com>
2015-10-10gitignore: ignore object file temporariesGanesh Ajjanagadde
During a build, a lot of *.o.-hash files are created - had not noticed this as they are usually dumped in tmpfs on Linux. However, they sometimes are present during a long build in the project directory, making it annoying to commit while the project is being built. These have been observed with Clang, -fsanitize-undefined on Arch Linux, though other configurations may also generate such temporaries. The solution here is on lines with the Linux kernel's .gitignore: https://github.com/torvalds/linux/blob/master/.gitignore. Signed-off-by: Ganesh Ajjanagadde <gajjanagadde@gmail.com> Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
2015-09-10.gitignore: ignore temp filesHarshit Mittal
Github: Closes #144
2015-08-16doc/examples: rename avio_list_dir -> avio_dir_cmdMariusz Szczepańczyk
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
2015-07-12Merge commit '8bc67ec2c0d2b5444d51a1bed1d50f0e10d92717'Michael Niedermayer
* commit '8bc67ec2c0d2b5444d51a1bed1d50f0e10d92717': Checkasm: assembly testing and benchmarking tool Merged-by: Michael Niedermayer <michael@niedermayer.cc>
2015-07-12Checkasm: assembly testing and benchmarking toolHenrik Gramner
It provides the following features: * verify correctness by comparing output to the C version. * detect failure to save and restore clobbered callee-saved registers. * detect 32-bit parameters being used as if they were 64-bit in x86-64 (the upper halves are not guaranteed to be zero - but in practice they very often are, which makes those bugs hard to spot otherwise). * easy benchmarking. Compile by running 'make checkasm'. Execute by running 'tests/checkasm/checkasm'. Optional arguments are '--bench' to run benchmarks for all functions, '--bench=<pattern>' to run benchmarks for all functions that starts with <pattern>, and '<integer>' to seed the PRNG for reproducible results. Contains unit tests for most h264pred functions to get started, more tests can be added afterwards using those as a reference. Loosely based on code from x264. Currently only supports x86 and x86-64, but additional architectures shouldn't be too much of an obstacle to add. Note that functions with floating point parameters or floating point return values are not supported. Some compiler-specific features or preprocessor hacks would likely be required to add support for that. Signed-off-by: Janne Grunau <janne-libav@jannau.net>
2015-07-03Merge commit '1316df7aa98c4784f190d107206d0bb12c590b89'Michael Niedermayer
* commit '1316df7aa98c4784f190d107206d0bb12c590b89': lavu: add an API function to return the Libav version string Conflicts: .gitignore Makefile cmdutils.c doc/APIchanges libavutil/avutil.h libavutil/utils.c See: f91126643a91c2d3f8d8e210c8facaf259951b03 Merged-by: Michael Niedermayer <michaelni@gmx.at>
2015-07-03lavu: add an API function to return the Libav version stringwm4
This returns something like "v12_dev0-1332-g333a27c". This is much more useful than the individual library versions, of which there are too many, and which are very hard to map back to releases or git commits. Signed-off-by: Janne Grunau <janne-libav@jannau.net>
2015-03-28doc/examples: add directory listing exampleLukasz Marek
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2015-02-02Merge commit '11e05533170485b593974cf90916425a0188e7bd'Michael Niedermayer
* commit '11e05533170485b593974cf90916425a0188e7bd': Ignore generated file tools/sidxindex. Merged-by: Michael Niedermayer <michaelni@gmx.at>
2015-02-02Ignore generated file tools/sidxindex.Diego Biurrun
2014-10-17gitignore: add test_copy.ffmetaBenoit Fouet
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2014-08-18avcodec: export motion vectors in frame side data on demandClément Bœsch
The reasoning behind this addition is that various third party applications are interested in getting some motion information out of a video "for free" when it is available. It was considered to export other information as well (such as the intra information about the block, or the quantization) but the structure might have ended up into a half full-generic, half full of codec specific cruft. If more information is necessary, it should either be added in the "flags" field of the AVMotionVector structure, or in another side-data. This commit also includes an example exporting them in a CSV stream.
2014-08-01Merge commit '706208ef47bffd525c982975d2756f7b2b220b8d'Michael Niedermayer
* commit '706208ef47bffd525c982975d2756f7b2b220b8d': fate: Split fate-pixdesc tests and dispatch them through Make Conflicts: tests/fate-run.sh tests/ref/fate/filter-pixdesc Merged-by: Michael Niedermayer <michaelni@gmx.at>
2014-08-01fate: Split fate-pixdesc tests and dispatch them through MakeDiego Biurrun
This allows running all the tests individually and/or in parallel.
2014-07-10gitignore: add examples/transcodingLukasz Marek
Signed-off-by: Lukasz Marek <lukasz.m.luki2@gmail.com> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2014-06-18Remove avserver.Anton Khirnov
It has not been properly maintained for years and there is little hope of that changing in the future. It appears simpler to write a new replacement from scratch than unbreaking it.
2014-06-16Merge commit '766f2d965ff1948749c37f26a714adb8aa89c4a9'Michael Niedermayer
* commit '766f2d965ff1948749c37f26a714adb8aa89c4a9': gitignore: add dylib and swp entries Merged-by: Michael Niedermayer <michaelni@gmx.at>
2014-06-16gitignore: add dylib and swp entriesVittorio Giovara
2014-05-06gitignore: add tools/uncoded_frameLukasz Marek
Signed-off-by: Lukasz Marek <lukasz.m.luki2@gmail.com> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2014-04-23examples: rename avcodec.c to decoding_encoding.cStefano Sabatini
Restore the old name, which was more meaningful and consistent with the names of the other examples.
2014-02-25Merge commit 'e7dfaf16a403972eb6aed5ce8f84c0085bd2fb5a'Michael Niedermayer
* commit 'e7dfaf16a403972eb6aed5ce8f84c0085bd2fb5a': libavfilter: example audio filtering program Conflicts: .gitignore configure doc/Makefile Merged-by: Michael Niedermayer <michaelni@gmx.at>
2014-02-25libavfilter: example audio filtering programAnton Khirnov
Based on a patch by Andrew Kelley <superjoe30@gmail.com> Signed-off-by: Diego Biurrun <diego@biurrun.de>
2014-02-19Merge commit '294a51e18ab7df4d658249361a03f0d716a4e9f0'Michael Niedermayer
* commit '294a51e18ab7df4d658249361a03f0d716a4e9f0': gitignore: Add all examples below doc/examples Merged-by: Michael Niedermayer <michaelni@gmx.at>
2014-02-19gitignore: Add all examples below doc/examplesDiego Biurrun
2014-02-17Merge commit 'b339182eba34f28de5f1a477cdd2c84f1ef35d90'Michael Niedermayer
* commit 'b339182eba34f28de5f1a477cdd2c84f1ef35d90': Move all example programs to doc/examples Conflicts: configure doc/Makefile doc/doxy-wrapper.sh doc/examples/avcodec.c doc/examples/decoding_encoding.c doc/examples/metadata.c doc/examples/muxing.c doc/examples/transcode_aac.c libavcodec/Makefile libavcodec/api-example.c libavformat/Makefile Merged-by: Michael Niedermayer <michaelni@gmx.at>
2014-02-02examples: add avio_reading.c exampleStefano Sabatini
2014-01-20examples: add remuxing exampleStefano Sabatini
Show how to perform streamcopy from one container to another.
2013-12-02Merge commit '3cd612d44789948f72b52944474e0870c5c60964'Michael Niedermayer
* commit '3cd612d44789948f72b52944474e0870c5c60964': gitignore: Ignore multilibrary example programs Merged-by: Michael Niedermayer <michaelni@gmx.at>
2013-12-01gitignore: Ignore multilibrary example programsDiego Biurrun
2013-12-01build: rename version.h to libavutil/ffversion.hTimothy Gu
Also the libavutil/ffversion.h will be installed. Rationale: * Applications might want to know FFmpeg's version besides the individual libraries'. * Avoids file name clash between FFmpeg's ./version.h and lib*/version.h when a library source file includes both and is compiled on an out-of-tree build. Fixes #1769. Signed-off-by: Timothy Gu <timothygu99@gmail.com> Reviewed-by: James Almer <jamrial@gmail.com> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2013-11-28Add transcode_aac example to .gitignore.Clément Bœsch
2013-11-04doc/examples: rename demuxing to demuxing_decoding.Clément Bœsch
That example shows how the decoding process works, not only the demuxing.
2013-09-04tools: add benchmark for crypto functions.Nicolas George
The benchmark tests the speed of the following algorithms: MD5, SHA-1, SHA-256, SHA-512, RIPEMD-160, AES-128. It can optionally be built to perform the same benchmark on other crypto libraries, for comparison purposes. The supported libraries are: - crypto: OpenSSL's libcrypto; - gcrypt: GnuTLS's libgcrypt; - tomcrypt: LibTomCrypt To enable them, use this syntax: make VERSUS=crypto+gcrypt+tomcrypt tools/crypto_bench They do not need to have been enabled in configure.
2013-05-16Rename ffadler to ffhash and expand it using the generic hash APIJames Almer
Signed-off-by: James Almer <jamrial@gmail.com> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>