mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-08 12:49:15 +00:00
09c9686498
* misc: Uses official names for NVDEC registers * Address gdkchan's comment * Address comments
15 lines
231 B
C#
15 lines
231 B
C#
namespace Ryujinx.Graphics.Nvdec
|
|
{
|
|
public enum ApplicationId
|
|
{
|
|
Mpeg = 1,
|
|
Vc1 = 2,
|
|
H264 = 3,
|
|
Mpeg4 = 4,
|
|
Vp8 = 5,
|
|
Hevc = 7,
|
|
Vp9 = 9,
|
|
HevcParser = 12,
|
|
}
|
|
}
|