AVLog.cs
 1  namespace Ryujinx.Graphics.Nvdec.FFmpeg.Native
 2  {
 3      enum AVLog
 4      {
 5          Panic = 0,
 6          Fatal = 8,
 7          Error = 16,
 8          Warning = 24,
 9          Info = 32,
10          Verbose = 40,
11          Debug = 48,
12          Trace = 56,
13          MaxOffset = 64,
14      }
15  }