mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-04-27 10:37:42 +02:00

* Remove dependency for FFMpeg.AutoGen Also prepare for FFMpeg 5.0 and 5.1 * Update Ryujinx.Graphics.Nvdec.Dependencies to 5.0.1-build10 * Address gdkchan's comments * Address Ack's comment * Address gdkchan's comment
8 lines
157 B
C#
8 lines
157 B
C#
namespace Ryujinx.Graphics.Nvdec.FFmpeg.Native
|
|
{
|
|
public struct AVRational
|
|
{
|
|
public int Numerator;
|
|
public int Denominator;
|
|
}
|
|
}
|