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-01-17avutil/tests: add aes_ctr, audio_fifo and imgutils to .gitignoreMatthieu Bouron
2017-01-13avutil/tests/audio_fifo.c: pass by reference for efficiency and change ↵Thomas Turner
datatype to const Signed-off-by: Thomas Turner <thomastdt@googlemail.com> Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
2017-01-02avutil/tests: added selftest for aes_ctr.cThomas Turner
Signed-off-by: Thomas Turner <thomastdt@googlemail.com> Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
2017-01-01avutil/tests: improved code coverage for atomicThomas Turner
Signed-off-by: Thomas Turner <thomastdt@googlemail.com> Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
2016-12-31avutil/tests/audio_fifo.c: Memory leak and tab space fixesThomas Turner
Prevents memory leak when read_samples_from_audio_fifo() is called more than once by deallocating before reallocating more memory. Fixes space indentation for contents in ERROR(). Signed-off-by: Thomas Turner <thomastdt@googlemail.com> Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
2016-12-31avutil/tests/audio_fifo.c: use av_malloc() family of functionsThomas Turner
Signed-off-by: Thomas Turner <thomastdt@googlemail.com> Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
2016-12-28avutil/tests/audio_fifo.c: Corrected test error messagesThomas Turner
Signed-off-by: Thomas Turner <thomastdt@googlemail.com> Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
2016-12-24tests/audio_fifo: fix buffer allocation for non planar formatsJames Almer
Signed-off-by: James Almer <jamrial@gmail.com>
2016-12-23avutil/tests/random_seed: eliminate gotoMichael Niedermayer
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
2016-12-23avutil/tests: Improved code coverage for random_seedThomas Turner
Signed-off-by: Thomas Turner <thomastdt@googlemail.com> Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
2016-12-22tests/avstring: free the pointer after calls to av_d2str()James Almer
Fixes memleaks. Signed-off-by: James Almer <jamrial@gmail.com>
2016-12-21avutil: Added selftest for libavutil/audio_fifo.cThomas Turner
Signed-off-by: Thomas Turner <thomastdt@googlemail.com> Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
2016-12-20avutil: Improved test coverage for avstring.cThomas Turner
Signed-off-by: Thomas Turner <thomastdt@googlemail.com> Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
2016-12-13avutil/tests/imgutils: Remove unused variableMichael Niedermayer
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
2016-12-11avutil/tests: run the cpu_init.c test conditionally on HAVE_THREADSWan-Teh Chang
Suggested by Diego Biurrun and James Almer. Signed-off-by: Wan-Teh Chang <wtc@google.com> Signed-off-by: James Almer <jamrial@gmail.com>
2016-12-11avutil/cpu_init: remove unnecessary arguments to the main() functionWan-Teh Chang
Signed-off-by: James Almer <jamrial@gmail.com>
2016-12-11fate: add av_image_check_size() testMichael Niedermayer
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
2016-11-24avutil/tests: add cpu_init to .gitignore and tests/fateWan-Teh Chang
This is a follow-up to commit d84a21207ea83055dc9b6dc1cd6a379f2ea756e7, which added the libavutil/tests/cpu_init.c. Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
2016-11-24avutil/tests: Add cpu_init.c to check whether the one-time initialization in ↵Wan-Teh Chang
av_get_cpu_flags() has data races. Co-author: Dmitry Vyukov of Google Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
2016-10-15avutil: Improved selftest coverage for libavutil/fifo.cThomas Turner
Tested functions: av_fifo_generic_peek(), av_fifo_grow() Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
2016-06-24Merge commit 'ded4a6543dfb5a2f1d9f7fb8d3ab27a1872c22b3'Clément Bœsch
* commit 'ded4a6543dfb5a2f1d9f7fb8d3ab27a1872c22b3': xtea-test: Use struct allocation functions from the API Merged-by: Clément Bœsch <clement@stupeflix.com>
2016-06-24Merge commit '8131bd4c22ad59b040173f67a5b2edb75863e801'Clément Bœsch
* commit '8131bd4c22ad59b040173f67a5b2edb75863e801': blowfish-test: Use struct allocation functions from the API Merged-by: Clément Bœsch <clement@stupeflix.com>
2016-06-24Merge commit 'a86ef80494d759807a5ef8dd12838f0690092e37'Clément Bœsch
* commit 'a86ef80494d759807a5ef8dd12838f0690092e37': blowfish-test: Return different values for different errors Merged-by: Clément Bœsch <clement@stupeflix.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-05-19xtea-test: Use struct allocation functions from the APIDiego Biurrun
2016-05-19blowfish-test: Use struct allocation functions from the APIDiego Biurrun
2016-05-19blowfish-test: Return different values for different errorsDiego Biurrun
2016-05-13tests: Move all test programs to a subdirectoryDiego Biurrun