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
2019-12-27avutil/tests/opt: add av_opt_get/av_opt_set testsMarton Balint
Signed-off-by: Marton Balint <cus@passwd.hu>
2019-12-27avutil/tests/opt: add tests for AV_OPT_TYPE_DICTMarton Balint
Signed-off-by: Marton Balint <cus@passwd.hu>
2019-05-12avutil: Add NV24 and NV42 pixel formatsPhilip Langdale
These are the 4:4:4 variants of the semi-planar NV12/NV21 formats. These formats are not used much, so we've never had a reason to add them until now. VDPAU recently added support HEVC 4:4:4 content and when you use the OpenGL interop, the returned surfaces are in NV24 format, so we need the pixel format for media players, even if there's no direct use within ffmpeg. Separately, there are apparently webcams that use NV24, but I've never seen one.
2018-12-16avutil/tests/random_seed: seeds[] is uint32_t, therefore use PRIX32 macroPeter Ross
squelch format type warning
2018-10-07avutil/tests/parseutils: add some big duration testsMarton Balint
Signed-off-by: Marton Balint <cus@passwd.hu>
2018-07-31lavutil/pixelutils: add sad_32x32 in pixelutils API.Jun Zhao
add sad_32x32 in pixelutils API, and update the fate. Signed-off-by: Jun Zhao <mypopydev@gmail.com>
2018-06-27libavutil/encryption_info: Add unit tests.Jacob Trimble
Signed-off-by: Jacob Trimble <modmaker@google.com> Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
2018-06-27avutil/gitignore: Ignore integer test binary.Jacob Trimble
Signed-off-by: Jacob Trimble <modmaker@google.com> Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
2018-06-17tests/bprint: Replace the number by macro for bprint initJun Zhao
Replace the number by macro for bprint init. Signed-off-by: Jun Zhao <mypopydev@gmail.com>
2018-05-21hwcontext: Add test for device creation and derivationMark Thompson
This uses any devices it can find on the host system - on a system with no hardware device support or in builds with no support included it will do nothing and pass.
2018-04-30avutil/pixdesc: add AV_PIX_FMT_FLAG_ALPHA to AV_PIX_FMT_PAL8Marton Balint
Signed-off-by: Marton Balint <cus@passwd.hu>
2018-03-21avutil/integer: move the test to the corresponding subdirectoryJames Almer
And actually enable it. Reviewed-by: Michael Niedermayer <michael@niedermayer.cc> Signed-off-by: James Almer <jamrial@gmail.com>
2018-03-08crc: add AV_CRC_8_SBC as a 8 bits CRC with polynomial 0x1DAurelien Jacobs
2018-01-23avutil/aes_ctr: Add method to set 16-byte IV.Jacob Trimble
Signed-off-by: Jacob Trimble <modmaker@google.com> Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
2018-01-05It has been replaced by C11 stdatomic.h and is now unused.Anton Khirnov
(cherry picked from commit 5cc0057f4910c8c72421b812c8f337ef6c43696c) Signed-off-by: James Almer <jamrial@gmail.com>
2017-12-25avutil: add AVX-512 flagsJames Darnley
2017-11-02Merge commit '97cfe1d8bd1968143e2ba9aa46ebe9504a835e24'James Almer
* commit '97cfe1d8bd1968143e2ba9aa46ebe9504a835e24': Convert all AVClass struct declarations to designated initializers. Merged-by: James Almer <jamrial@gmail.com>
2017-10-23avutil/tests/hmac: remove superfluous loopJames Almer
The gap in enum values has been removed. Signed-off-by: James Almer <jamrial@gmail.com>
2017-09-10add missing ignore filesJesse Liu
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
2017-09-08lavu/tests: move timer.h include earlierClément Bœsch
In the next commit, timer.h will require a _GNU_SOURCE to be set before including system headers. This commit prevents compilation failures.
2017-09-08lavu/tests/des: rename crypt to crypt_refClément Bœsch
This will prevent a symbol clash with crypt(3) after unistd.h is included.
2017-07-27fate: update pixfmt_best test to check for endiannessTobias Rapp
Signed-off-by: Tobias Rapp <t.rapp@noa-archive.com>
2017-07-19pixdesc: Add a test for av_find_best_pix_fmt_of_2()Mark Thompson
2017-06-15avutil/tests: remove float_dsp testJames Almer
It's been ported to checkasm. Signed-off-by: James Almer <jamrial@gmail.com>
2017-06-12Convert all AVClass struct declarations to designated initializers.Diego Biurrun
2017-05-19Merge commit 'b83aea73404f6f9314e72fe5d6238deaffa12b2c'Clément Bœsch
* commit 'b83aea73404f6f9314e72fe5d6238deaffa12b2c': des-test: Pass the proper types to av_des_*() functions See 183c3fa48acaf4561d5269ab9a766d13ae70140c Merged-by: Clément Bœsch <u@pkh.me>
2017-04-11avutil/avstring: improve av_strreplace implementSteven Liu
Use AVBprint to implement av_strreplace add av_strreplace test case TEST_STRREPLACE Reviewed-by: Nicolas George <george@nsup.org> Signed-off-by: Steven Liu <lq@chinaffmpeg.org>
2017-04-10avutil/float_dsp: add test for vector_dmac_scalarJames Almer
2017-03-31avutil/tests/dict: Check return of av_dict_parse_string()Michael Niedermayer
Fixes: CID1396402 Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
2017-03-08avutil/tests/lfg: Remove debugging start/stop timerMichael Niedermayer
Fixes code with qemu ARM Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
2017-03-08avutil/tests/lfg.c: added proper normality testThomas Turner
The Chen-Shapiro(CS) test was used to test normality for Lagged Fibonacci PRNG. Normality Hypothesis Test: The null hypothesis formally tests if the population the sample represents is normally-distributed. For CS, when the normality hypothesis is True, the distribution of QH will have a mean close to 1. Information on CS can be found here: http://www.stata-journal.com/sjpdf.html?articlenum=st0264 http://www.originlab.com/doc/Origin-Help/NormalityTest-Algorithm Signed-off-by: Thomas Turner <thomastdt@googlemail.com> Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
2017-02-26add locale month names to av_small_strptimeMicah Galizia
Signed-off-by: Micah Galizia <micahgalizia@gmail.com> Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
2017-01-24des-test: Pass the proper types to av_des_*() functionsDiego Biurrun
Fixes a number of incompatible pointer type warnings.
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>