-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathLogLevel.cs
More file actions
35 lines (30 loc) · 853 Bytes
/
LogLevel.cs
File metadata and controls
35 lines (30 loc) · 853 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
namespace FFmpeg.AutoGen.Toolkit
{
using FFmpeg.AutoGen.Abstractions;
/// <summary>
/// FFMpeg logging verbosity levels.
/// </summary>
public enum LogLevel
{
/// <summary>
/// Doesn't print any messages.
/// </summary>
Quiet = ffmpeg.AV_LOG_QUIET,
/// <summary>
/// Prints only error messages.
/// </summary>
Error = ffmpeg.AV_LOG_ERROR,
/// <summary>
/// Prints error and warning messages.
/// </summary>
Warning = ffmpeg.AV_LOG_WARNING,
/// <summary>
/// Prints errors, warnings and informational messages.
/// </summary>
Info = ffmpeg.AV_LOG_INFO,
/// <summary>
/// Prints the most detailed messages.
/// </summary>
Verbose = ffmpeg.AV_LOG_VERBOSE,
}
}