namespace Bmp.Core.FFMpeg.CsCorePorts.FFMpegWrap; /// /// Defines Ffmpeg Loglevels /// public enum LogLevel { /// /// Print no output /// Quit = -8, /// /// Something went really wrong and we will crash now. /// LogPanic = 0, /// /// Something went wrong and recovery is not possible. /// Fatal = 8, /// /// Something went wrong and cannot losslessly be recovered. /// Error = 16, /// /// Something somehow does not look correct. /// Warning = 24, /// /// Standard information. /// Info = 32, /// /// Detailed information. /// Verbose = 40, /// /// Stuff which is only useful for libav* developers. /// Debug = 48 }