aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Graphics/VDec/VideoCodec.cs
blob: f031919dc1d781a9faff9fe0a347b5a9859ab925 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
namespace Ryujinx.Graphics.VDec
{
    enum VideoCodec
    {
        H264 = 3,
        Vp8  = 5,
        H265 = 7,
        Vp9  = 9
    }
}