- 14 Feb, 2014 2 commits
-
-
Jan Ekström authored
The official Ut Video decoder only threads with slices, thus until now any files encoded by the libavcodec encoder have only been decodable with a single thread. The default slice count is now set to subsampled_height / 120. Also sets slices to 1 for the Ut Video encoder tests to keep them green. Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-
Jan Ekström authored
The official Ut Video decoder only threads with slices, thus until now any files encoded by the libavcodec encoder have only been decodable with a single thread. The default slice count is now set to subsampled_height / 120. Also sets slices to 1 for the Ut Video encoder tests to keep them green. Signed-off-by: Derek Buitenhuis <derek.buitenhuis@gmail.com>
-
- 12 Feb, 2014 2 commits
-
-
Ronald S. Bultje authored
The old one didn't use segmentation. One uses segmentation in all frame types (--aq-mode=1), and the other uses all segmentation features, but only in inter frames (mbgraph). Signed-off-by: Anton Khirnov <anton@khirnov.net>
-
Ronald S. Bultje authored
This disables backward probability updates, which makes the codec more friendly for frame-level multi-threading. Signed-off-by: Anton Khirnov <anton@khirnov.net>
-
- 10 Feb, 2014 1 commit
-
-
Guillaume Martres authored
New streams: LTRPSPS_A_Qualcomm_1, SLPPLP_A_VIDYO_1, VPSID_A_VIDYO_1 Updated streams: EXT_A_ericsson_4, NUT_A_ericsson_5, RPS_C_ericsson_5, RPS_D_ericsson_6 Signed-off-by: Anton Khirnov <anton@khirnov.net>
-
- 05 Feb, 2014 1 commit
-
-
Janne Grunau authored
The original test without a forced idct is still useful since it tests the switching of the idct algorithm/permutation on x86 with MMX. MMXext or SSE2. Make sure the test runs only if MMX inline asm is available and force -cpuflags to all. Add the required bitexact flag for both tests.
-
- 03 Feb, 2014 1 commit
-
-
addr-see-the-website@aetey.se authored
Even though the most common framerate for RoQ is 30fps, the format supports other framerates too. Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-
- 02 Feb, 2014 2 commits
-
-
Stefano Sabatini authored
-
Michael Niedermayer authored
should fix test to match on all platforms Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-
- 31 Jan, 2014 1 commit
-
-
Janne Grunau authored
Test sample is made from the sample in Bug-Id: videolan/7411
-
- 26 Jan, 2014 1 commit
-
-
Michael Niedermayer authored
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-
- 21 Jan, 2014 1 commit
-
-
Michael Niedermayer authored
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-
- 15 Jan, 2014 1 commit
-
-
James Almer authored
Signed-off-by: James Almer <jamrial@gmail.com> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-
- 10 Jan, 2014 2 commits
-
-
Martin Storsjö authored
This fixes these fate tests on big endian. Signed-off-by: Martin Storsjö <martin@martin.st>
-
Michael Niedermayer authored
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-
- 09 Jan, 2014 5 commits
-
-
Michael Niedermayer authored
The fate test is changed because the reference file depends on the use of non cleared data at the very end. Alternatively we could upload a new reference file, though that would then have to be changed every time the handling of a truncated frame changes or theres a change to error concealment, each time adding a new file ... Fixes use of uninitialized memory Fixed: msan_uninit-mem_7f3c02b81363_2787_RLG2_19.rm Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-
Vittorio Giovara authored
-
Anton Khirnov authored
-
Anton Khirnov authored
They are not measurably faster on x86, they might be somewhat faster on other platforms due to missing emu edge SIMD, but the gain is not large enough to justify the added complexity.
-
Anton Khirnov authored
They are not measurably faster on x86, they might be somewhat faster on other platforms due to missing emu edge SIMD, but the gain is not large enough to justify the added complexity.
-
- 06 Jan, 2014 3 commits
-
-
Guillaume Martres authored
Some HEVC conformance streams zip on http://wftp3.itu.int/av-arch/jctvc-site/bitstream_exchange/draft_conformance/ were updated without changing the actual stream. Rename them in FATE accordingly to make it easier to track future stream updates. Signed-off-by: Anton Khirnov <anton@khirnov.net>
-
Guillaume Martres authored
Also remove superseded conformance streams. The conformance streams all come from http://wftp3.itu.int/av-arch/jctvc-site/bitstream_exchange/draft_conformance/Signed-off-by: Anton Khirnov <anton@khirnov.net>
-
Michael Niedermayer authored
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-
- 04 Jan, 2014 3 commits
-
-
Alex Converse authored
-
Alex Converse authored
-
Alex Converse authored
-
- 03 Jan, 2014 1 commit
-
-
Anton Khirnov authored
-
- 02 Jan, 2014 1 commit
-
-
James Almer authored
Signed-off-by: James Almer <jamrial@gmail.com> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-
- 18 Dec, 2013 1 commit
-
-
Martin Storsjö authored
The RGB32 pixel format is RGBA/BGRA depending on target endianness - make sure to convert it to one specific format for the framecrc tests. This fixes the pngparser fate test on big endian. Signed-off-by: Martin Storsjö <martin@martin.st>
-
- 17 Dec, 2013 1 commit
-
-
Vittorio Giovara authored
-
- 05 Dec, 2013 1 commit
-
-
Anton Khirnov authored
This has already been done in eb066a4c, but the number of frames produced from that file changed due to timestamps changes since then.
-
- 03 Dec, 2013 1 commit
-
-
Michael Niedermayer authored
This makes the USE_FLOATS == 0 available to the end user More float optimizations can easily be added as well now common code should be factored out into a common file once all fixed point & floating point optimizations are done, this is to avoid having to move code back and forth between files. Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-
- 30 Nov, 2013 2 commits
-
-
Ronald S. Bultje authored
The old one didn't use segmentation. One uses segmentation in all frame types (--aq-mode=1), and the other uses all segmentation features, but only in inter frames (mbgraph).
-
Ronald S. Bultje authored
This disables backward probability updates, which makes the codec more friendly for frame-level multi-threading.
-
- 21 Nov, 2013 1 commit
-
-
Vittorio Giovara authored
This test selects alternate frames from input.
-
- 20 Nov, 2013 1 commit
-
-
Michael Niedermayer authored
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-
- 17 Nov, 2013 1 commit
-
-
Michael Niedermayer authored
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-
- 16 Nov, 2013 1 commit
-
-
Anton Khirnov authored
-
- 15 Nov, 2013 1 commit
-
-
Ronald S. Bultje authored
Originally written by Ronald S. Bultje <rsbultje@gmail.com> and Clément Bœsch <u@pkh.me> Further contributions by: Anton Khirnov <anton@khirnov.net> Diego Biurrun <diego@biurrun.de> Luca Barbato <lu_zero@gentoo.org> Martin Storsjö <martin@martin.st> Signed-off-by: Luca Barbato <lu_zero@gentoo.org> Signed-off-by: Anton Khirnov <anton@khirnov.net>
-
- 14 Nov, 2013 1 commit
-
-
Diego Biurrun authored
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-