mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-08 08:28:40 +00:00
10 lines
138 B
C#
10 lines
138 B
C#
|
namespace Ryujinx.Graphics.VDec
|
||
|
{
|
||
|
enum VideoCodec
|
||
|
{
|
||
|
H264 = 3,
|
||
|
Vp8 = 5,
|
||
|
H265 = 7,
|
||
|
Vp9 = 9
|
||
|
}
|
||
|
}
|