Skip to content

Commit

Permalink
Revert "x86: Disable 8x16 16bpc inverse transforms for SSE4.1"
Browse files Browse the repository at this point in the history
This reverts commit 33f359e.
It is safe to do so now that EOB values match dav1d conventions.
  • Loading branch information
barrbrain committed Nov 30, 2022
1 parent 61568c9 commit 6798ccf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/asm/x86/transform/inverse.rs
Original file line number Diff line number Diff line change
Expand Up @@ -318,7 +318,7 @@ impl_itx_hbd_fns!(
// 16x
[],
[(16, 16), (16, 8), (16, 4)],
// 8x and 4x (minus 8x16)
// 8x and 4x
[
(TxType::DCT_ADST, dct, adst),
(TxType::ADST_DCT, adst, dct),
Expand All @@ -331,7 +331,7 @@ impl_itx_hbd_fns!(
(TxType::FLIPADST_ADST, flipadst, adst),
(TxType::FLIPADST_FLIPADST, flipadst, flipadst)
],
[(4, 16), (8, 8), (8, 4), (4, 8), (4, 4)],
[(8, 16), (4, 16), (8, 8), (8, 4), (4, 8), (4, 4)],
_10,
[(16, sse4, SSE4_1)]
);
Expand Down

0 comments on commit 6798ccf

Please sign in to comment.