mirror of
https://git.ryujinx.app/projects/Kenji-NX.git
synced 2026-09-25 17:07:59 +02:00
* Initialize loop filter parameters * Adjust docstrings for CodecError.cs * Remove duplicate BitUtils methods
14 lines
299 B
C#
14 lines
299 B
C#
namespace Ryujinx.Graphics.Nvdec.Vp9
|
|
{
|
|
internal struct InternalErrorInfo
|
|
{
|
|
public CodecErr ErrorCode;
|
|
|
|
public void InternalError(CodecErr error, string message)
|
|
{
|
|
ErrorCode = error;
|
|
|
|
throw new InternalErrorException(message);
|
|
}
|
|
}
|
|
} |