- 14 Jun, 2017 1 commit
-
-
James Almer authored
It's been ported to checkasm. Signed-off-by:
James Almer <jamrial@gmail.com>
-
- 11 Apr, 2017 1 commit
-
-
Steven Liu authored
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>
-
- 10 Apr, 2017 1 commit
-
-
James Almer authored
-
- 30 Mar, 2017 1 commit
-
-
Michael Niedermayer authored
Fixes: CID1396402 Signed-off-by:
Michael Niedermayer <michael@niedermayer.cc>
-
- 08 Mar, 2017 2 commits
-
-
Michael Niedermayer authored
Fixes code with qemu ARM Signed-off-by:
Michael Niedermayer <michael@niedermayer.cc>
-
Thomas Turner authored
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-AlgorithmSigned-off-by:
Thomas Turner <thomastdt@googlemail.com> Signed-off-by:
Michael Niedermayer <michael@niedermayer.cc>
-
- 26 Feb, 2017 1 commit
-
-
Micah Galizia authored
Signed-off-by:
Micah Galizia <micahgalizia@gmail.com> Signed-off-by:
Michael Niedermayer <michael@niedermayer.cc>
-
- 24 Jan, 2017 1 commit
-
-
Diego Biurrun authored
Fixes a number of incompatible pointer type warnings.
-
- 17 Jan, 2017 1 commit
-
-
Matthieu Bouron authored
-
- 12 Jan, 2017 1 commit
-
-
Thomas Turner authored
Signed-off-by:
Thomas Turner <thomastdt@googlemail.com> Signed-off-by:
Michael Niedermayer <michael@niedermayer.cc>
-
- 02 Jan, 2017 1 commit
-
-
Thomas Turner authored
Signed-off-by:
Thomas Turner <thomastdt@googlemail.com> Signed-off-by:
Michael Niedermayer <michael@niedermayer.cc>
-
- 01 Jan, 2017 1 commit
-
-
Thomas Turner authored
Signed-off-by:
Thomas Turner <thomastdt@googlemail.com> Signed-off-by:
Michael Niedermayer <michael@niedermayer.cc>
-
- 31 Dec, 2016 2 commits
-
-
Thomas Turner authored
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>
-
Thomas Turner authored
Signed-off-by:
Thomas Turner <thomastdt@googlemail.com> Signed-off-by:
Michael Niedermayer <michael@niedermayer.cc>
-
- 28 Dec, 2016 1 commit
-
-
Thomas Turner authored
Signed-off-by:
Thomas Turner <thomastdt@googlemail.com> Signed-off-by:
Michael Niedermayer <michael@niedermayer.cc>
-
- 24 Dec, 2016 1 commit
-
-
James Almer authored
Signed-off-by:
James Almer <jamrial@gmail.com>
-
- 23 Dec, 2016 2 commits
-
-
Michael Niedermayer authored
Signed-off-by:
Michael Niedermayer <michael@niedermayer.cc>
-
Thomas Turner authored
Signed-off-by:
Thomas Turner <thomastdt@googlemail.com> Signed-off-by:
Michael Niedermayer <michael@niedermayer.cc>
-
- 22 Dec, 2016 1 commit
-
-
James Almer authored
Fixes memleaks. Signed-off-by:
James Almer <jamrial@gmail.com>
-
- 21 Dec, 2016 1 commit
-
-
Thomas Turner authored
Signed-off-by:
Thomas Turner <thomastdt@googlemail.com> Signed-off-by:
Michael Niedermayer <michael@niedermayer.cc>
-
- 20 Dec, 2016 1 commit
-
-
Thomas Turner authored
Signed-off-by:
Thomas Turner <thomastdt@googlemail.com> Signed-off-by:
Michael Niedermayer <michael@niedermayer.cc>
-
- 12 Dec, 2016 1 commit
-
-
Michael Niedermayer authored
Signed-off-by:
Michael Niedermayer <michael@niedermayer.cc>
-
- 10 Dec, 2016 3 commits
-
-
Wan-Teh Chang authored
Suggested by Diego Biurrun and James Almer. Signed-off-by:
Wan-Teh Chang <wtc@google.com> Signed-off-by:
James Almer <jamrial@gmail.com>
-
Wan-Teh Chang authored
Signed-off-by:
James Almer <jamrial@gmail.com>
-
Michael Niedermayer authored
Signed-off-by:
Michael Niedermayer <michael@niedermayer.cc>
-
- 08 Dec, 2016 1 commit
-
-
Wan-Teh Chang authored
Make the one-time initialization in av_get_cpu_flags() thread-safe. The static variables |flags|, |cpuflags_mask|, and |checked| in libavutil/cpu.c are read and written using normal load and store operations. These are considered as data races. The fix is to use atomic load and store operations. Remove the |checked| variable because the invalid value of -1 for |flags| can be used to indicate the same condition. Rename |flags| to |cpu_flags| and move it to file scope. The fix can be verified by running the libavutil/tests/cpu_init.c test program under ThreadSanitizer: ./configure --toolchain=clang-tsan make libavutil/tests/cpu_init libavutil/tests/cpu_init There should be no warnings from ThreadSanitizer. Co-author: Dmitry Vyukov of Google, who suggested the data race fix. Signed-off-by:
Wan-Teh Chang <wtc@google.com>
-
- 24 Nov, 2016 1 commit
-
-
Wan-Teh Chang authored
This is a follow-up to commit d84a2120, which added the libavutil/tests/cpu_init.c. Signed-off-by:
Michael Niedermayer <michael@niedermayer.cc>
-
- 23 Nov, 2016 1 commit
-
-
Wan-Teh Chang authored
avutil/tests: Add cpu_init.c to check whether the one-time initialization in av_get_cpu_flags() has data races. Co-author: Dmitry Vyukov of Google Signed-off-by:
Michael Niedermayer <michael@niedermayer.cc>
-
- 14 Oct, 2016 1 commit
-
-
Thomas Turner authored
Tested functions: av_fifo_generic_peek(), av_fifo_grow() Signed-off-by:
Michael Niedermayer <michael@niedermayer.cc>
-
- 02 Oct, 2016 1 commit
-
-
Anton Khirnov authored
It has been replaced by C11 stdatomic.h and is now unused.
-
- 19 May, 2016 3 commits
-
-
Diego Biurrun authored
-
Diego Biurrun authored
-
Diego Biurrun authored
-
- 13 May, 2016 1 commit
-
-
Diego Biurrun authored
-