2023-12-04 13:17:13 +00:00
|
|
|
namespace Ryujinx.Graphics.Video
|
2021-10-12 21:55:57 +01:00
|
|
|
{
|
|
|
|
public ref struct Vp8PictureInfo
|
|
|
|
{
|
|
|
|
public bool KeyFrame;
|
|
|
|
public uint FirstPartSize;
|
|
|
|
public uint Version;
|
|
|
|
public ushort FrameWidth;
|
|
|
|
public ushort FrameHeight;
|
|
|
|
}
|
2023-06-27 15:45:33 +01:00
|
|
|
}
|