TxType.cs 341 B

1234567891011
  1. namespace Ryujinx.Graphics.Nvdec.Vp9.Types
  2. {
  3. internal enum TxType
  4. {
  5. DctDct = 0, // DCT in both horizontal and vertical
  6. AdstDct = 1, // ADST in vertical, DCT in horizontal
  7. DctAdst = 2, // DCT in vertical, ADST in horizontal
  8. AdstAdst = 3, // ADST in both directions
  9. TxTypes = 4
  10. }
  11. }