2021-10-12 22:55:57 +02:00
|
|
|
|
namespace Ryujinx.Graphics.Video
|
|
|
|
|
{
|
|
|
|
|
public ref struct Vp8PictureInfo
|
|
|
|
|
{
|
|
|
|
|
public bool KeyFrame;
|
|
|
|
|
public uint FirstPartSize;
|
|
|
|
|
public uint Version;
|
|
|
|
|
public ushort FrameWidth;
|
|
|
|
|
public ushort FrameHeight;
|
|
|
|
|
}
|
2023-06-27 16:45:33 +02:00
|
|
|
|
}
|