Enum Constant and Description |
---|
AV_LOG_DEBUG
Stuff which is only useful for libav* developers.
|
AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
|
AV_LOG_FATAL
Something went wrong and recovery is not possible.
|
AV_LOG_INFO
Standard information.
|
AV_LOG_PANIC
Something went really wrong and we will crash now.
|
AV_LOG_QUIET
Print no output.
|
AV_LOG_STDERR
This log level is defined by FFmpegKit.
|
AV_LOG_TRACE
Extremely verbose debugging, useful for libav* development.
|
AV_LOG_VERBOSE
Detailed information.
|
AV_LOG_WARNING
Something somehow does not look correct.
|
Modifier and Type | Method and Description |
---|---|
static Level |
from(int value)
Returns the enumeration defined by provided value.
|
int |
getValue()
Returns level value.
|
static Level |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Level[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Level AV_LOG_STDERR
public static final Level AV_LOG_QUIET
public static final Level AV_LOG_PANIC
public static final Level AV_LOG_FATAL
public static final Level AV_LOG_ERROR
public static final Level AV_LOG_WARNING
public static final Level AV_LOG_INFO
public static final Level AV_LOG_VERBOSE
public static final Level AV_LOG_DEBUG
public static final Level AV_LOG_TRACE
public static Level[] values()
for (Level c : Level.values()) System.out.println(c);
public static Level valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic static Level from(int value)
Returns the enumeration defined by provided value.
value
- level valuepublic int getValue()