LogLevel.cs 943 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. namespace Bmp.Core.FFMpeg.CsCorePorts.FFMpegWrap;
  2. /// <summary>
  3. /// Defines Ffmpeg Loglevels
  4. /// </summary>
  5. public enum LogLevel
  6. {
  7. /// <summary>
  8. /// Print no output
  9. /// </summary>
  10. Quit = -8,
  11. /// <summary>
  12. /// Something went really wrong and we will crash now.
  13. /// </summary>
  14. LogPanic = 0,
  15. /// <summary>
  16. /// Something went wrong and recovery is not possible.
  17. /// </summary>
  18. Fatal = 8,
  19. /// <summary>
  20. /// Something went wrong and cannot losslessly be recovered.
  21. /// </summary>
  22. Error = 16,
  23. /// <summary>
  24. /// Something somehow does not look correct.
  25. /// </summary>
  26. Warning = 24,
  27. /// <summary>
  28. /// Standard information.
  29. /// </summary>
  30. Info = 32,
  31. /// <summary>
  32. /// Detailed information.
  33. /// </summary>
  34. Verbose = 40,
  35. /// <summary>
  36. /// Stuff which is only useful for libav* developers.
  37. /// </summary>
  38. Debug = 48
  39. }