Pauli Oikkonen
|
c7313ce567
|
Store AVG QP information in encmain
|
2019-11-04 17:08:07 +02:00 |
|
Reima Hyvönen
|
80575c59bf
|
Some updates done to get right bitrate and avg QP
|
2019-10-31 15:56:24 +02:00 |
|
Reima Hyvönen
|
252bab8820
|
Added prints to bitrate and AVG QP
|
2019-10-31 15:56:24 +02:00 |
|
Pauli Oikkonen
|
6d7a4f555c
|
Also remove 16x16 (A * B^T)^T matrix multiply
Can be done using (B * A^T) instead, it's the exact same
|
2019-10-28 16:19:42 +02:00 |
|
Pauli Oikkonen
|
2c2deb2366
|
Tidy AVX2 32x32 matrix multiply
|
2019-10-28 16:19:42 +02:00 |
|
Pauli Oikkonen
|
98ad78b333
|
Tidy the old AVX2 32x32 matrix multiply
It was actually a very good algorithm, just looked messy!
|
2019-10-28 16:19:42 +02:00 |
|
Pauli Oikkonen
|
4a921cbdb5
|
Retain data as much in YMM registers as possible
This seems to make it a whole lot quicker
|
2019-10-28 16:19:42 +02:00 |
|
Pauli Oikkonen
|
9589baccac
|
Add more swap filename patterns to .gitignore
|
2019-10-28 16:19:42 +02:00 |
|
Pauli Oikkonen
|
ac4d710e23
|
Unroll 32x32 matrix multiply, use all regs
|
2019-10-28 16:19:42 +02:00 |
|
Pauli Oikkonen
|
a58608d0b8
|
Remove totally unnecessary (A * B^T)^T 32x32 multiply
|
2019-10-28 16:19:42 +02:00 |
|
Pauli Oikkonen
|
043f53539f
|
Implement a streamlined matrix-multiply 32x32 DCT
|
2019-10-28 16:19:42 +02:00 |
|
Pauli Oikkonen
|
e9da2d851b
|
Tidy 32x32 fast DCT's helper functions
|
2019-10-28 16:19:42 +02:00 |
|
Pauli Oikkonen
|
e382339182
|
Implement fast (butterfly) 32x32 DCT in AVX2
|
2019-10-28 16:19:42 +02:00 |
|
Pauli Oikkonen
|
b5962dadac
|
Tidy indentation in AVX2 16x16 iDCT
|
2019-10-28 16:19:42 +02:00 |
|
Pauli Oikkonen
|
36a8f89025
|
Fine-tune 16x16 AVX2 iDCT
|
2019-10-28 16:19:42 +02:00 |
|
Pauli Oikkonen
|
2b95d9cdd6
|
Align all DCT test buffers to 32 bytes
Now that most AVX2 DCTs use MOVDQA instead of MOVDQU, also adapt the
tests to that..
|
2019-10-28 16:19:42 +02:00 |
|
Pauli Oikkonen
|
ca9409de2b
|
Implement 16x16 DCT as butterfly algorithm in AVX2
|
2019-10-28 16:19:42 +02:00 |
|
Pauli Oikkonen
|
7c69a26717
|
Use aligned loads and stores for AVX2 DCT
|
2019-10-28 16:19:42 +02:00 |
|
Pauli Oikkonen
|
8e9c65dca6
|
Align DCT matrices and temp transform buffers
|
2019-10-28 16:19:42 +02:00 |
|
Pauli Oikkonen
|
148a150522
|
Align DCT source and dest blocks to cache line
|
2019-10-28 16:19:42 +02:00 |
|
Pauli Oikkonen
|
8e60bbf6a6
|
Slightly tune 16x16 forward DCT
Use an array of __m256i's to store temporary value, essentially letting
the compiler enforce alignment and use aligned loads and stores.
|
2019-10-28 16:19:42 +02:00 |
|
Pauli Oikkonen
|
c0cc0e8a75
|
Optimize 16x16 multiply by only slicing right mat once
|
2019-10-28 16:19:42 +02:00 |
|
Pauli Oikkonen
|
e463d27f22
|
Implement streamlined generic 16x16 matrix multiply
It can't be this fast for real, can it?
|
2019-10-28 16:19:42 +02:00 |
|
Pauli Oikkonen
|
beb85ce9d6
|
Reorder parameters for 8x8 matrix multiplies
|
2019-10-28 16:19:42 +02:00 |
|
Pauli Oikkonen
|
292af62256
|
Implement tailored 16x16 forward DCT
|
2019-10-28 16:19:42 +02:00 |
|
Pauli Oikkonen
|
30ce461d98
|
Redo 4x4 matrix multiplication
|
2019-10-28 16:19:42 +02:00 |
|
Pauli Oikkonen
|
07970ea82f
|
Streamline by-the-book 8x8 matrix multiplication
Also chop up the forward transform into two tailored multiply functions
|
2019-10-28 16:19:42 +02:00 |
|
Pauli Oikkonen
|
7ec7ab3361
|
Implement a tailored AVX2 8x8 DCT
|
2019-10-28 16:19:42 +02:00 |
|
Marko Viitanen
|
ad7c8d40bc
|
Merge pull request #247 from pkubaj/master
Fix build on powerpc64 with LLVM
|
2019-09-12 16:11:19 +03:00 |
|
pkubaj
|
1d7fcf4227
|
Fix build on powerpc64 with LLVM
|
2019-09-12 15:05:00 +02:00 |
|
Marko Viitanen
|
4007485420
|
Update the ffmpeg version used in the tests
|
2019-09-11 14:52:30 +03:00 |
|
Marko Viitanen
|
da5dca057d
|
Change libtool path in tests to fix travis builds
|
2019-09-11 09:33:43 +03:00 |
|
Pauli Oikkonen
|
99597b828a
|
Work around the ancient Win32 calling convention hassle
See if this'll work now
|
2019-09-06 13:14:42 +03:00 |
|
Pauli Oikkonen
|
c5ca18950c
|
Revert "Revert to 6924d90052 due to broken visual studio build"
This reverts commit 1dd0619bd7 .
|
2019-09-05 18:21:55 +03:00 |
|
Pauli Oikkonen
|
55529decd5
|
Implement _mm256_insert_epi32 and extract pseudo-ops
Visual Studio headers apparently lack these guys
|
2019-09-05 18:20:52 +03:00 |
|
Ari Lemmetti
|
4e94d60552
|
Merge branch 'smp-merge-analysis'
|
2019-09-03 16:47:07 +03:00 |
|
Ari Lemmetti
|
147378e1f9
|
Prevent 8x4 and 4x8 bipred in merge analysis
|
2019-09-03 16:32:50 +03:00 |
|
Ari Lemmetti
|
ef1fdbf259
|
Separate prediction of single PU/PB from CU/CB
|
2019-09-03 16:32:50 +03:00 |
|
Ari Lemmetti
|
3bc510712f
|
Enable merge analysis for smp and amp
|
2019-09-02 17:31:51 +03:00 |
|
Ari Lemmetti
|
557bcbc6aa
|
Make luma or chroma only inter "recon" or predict possible
|
2019-09-02 17:15:28 +03:00 |
|
Ari Lemmetti
|
f7aa544443
|
Temporarily disable offending strategies to make tests not fail for everyone
|
2019-08-26 22:56:39 +03:00 |
|
Ari Lemmetti
|
aa8ab195d1
|
Compare rough cost of the best merge mode against AMVP to make mode decision
|
2019-08-26 22:49:09 +03:00 |
|
Ari Lemmetti
|
8f866ff83a
|
Use correct index
|
2019-08-26 20:10:10 +03:00 |
|
Ari Lemmetti
|
2343958a14
|
Fix transform split for small luma blocks
|
2019-08-24 21:50:17 +03:00 |
|
Ari Lemmetti
|
ab872c0432
|
Merge branch 'early-skip-fixes'
|
2019-08-24 21:49:59 +03:00 |
|
Ari Lemmetti
|
800fc8644d
|
Reset CBFs because CBFs might have been set earlier for depth earlier.
|
2019-08-24 21:49:33 +03:00 |
|
Ari Lemmetti
|
a80de22bc7
|
Add only different candidates to the list
|
2019-08-24 21:49:33 +03:00 |
|
Ari Lemmetti
|
45c7961412
|
Remove tr depth fill. It should not be needed.
|
2019-08-24 21:49:32 +03:00 |
|
Ari Lemmetti
|
ff8711aaab
|
Add missing logic to add valid indices to list
|
2019-08-24 21:49:29 +03:00 |
|
Ari Lemmetti
|
1dd0619bd7
|
Revert to 6924d90052 due to broken visual studio build
|
2019-08-08 15:15:34 +03:00 |
|