FFmpeg 5.1.6
|
Modules | |
Logging Constants | |
Macros | |
#define | AV_LOG_C(x) ((x) << 8) |
Sets additional colors for extended debugging sessions. More... | |
#define | AV_LOG_SKIP_REPEATED 1 |
Skip repeated messages, this requires the user app to use av_log() instead of (f)printf as the 2 would otherwise interfere and lead to "Last message repeated x times" messages below (f)printf messages with some bad luck. More... | |
#define | AV_LOG_PRINT_LEVEL 2 |
Include the log severity in messages originating from codecs. More... | |
Functions | |
void | av_log (void *avcl, int level, const char *fmt,...) av_printf_format(3 |
Send the specified message to the log if the level is less than or equal to the current av_log_level. More... | |
void void | av_log_once (void *avcl, int initial_level, int subsequent_level, int *state, const char *fmt,...) av_printf_format(5 |
Send the specified message to the log once with the initial_level and then with the subsequent_level. More... | |
void void void | av_vlog (void *avcl, int level, const char *fmt, va_list vl) |
Send the specified message to the log if the level is less than or equal to the current av_log_level. More... | |
int | av_log_get_level (void) |
Get the current log level. More... | |
void | av_log_set_level (int level) |
Set the log level. More... | |
void | av_log_set_callback (void(*callback)(void *, int, const char *, va_list)) |
Set the logging callback. More... | |
void | av_log_default_callback (void *avcl, int level, const char *fmt, va_list vl) |
Default logging callback. More... | |
const char * | av_default_item_name (void *ctx) |
Return the context name. More... | |
AVClassCategory | av_default_get_category (void *ptr) |
void | av_log_format_line (void *ptr, int level, const char *fmt, va_list vl, char *line, int line_size, int *print_prefix) |
Format a line of log the same way as the default callback. More... | |
int | av_log_format_line2 (void *ptr, int level, const char *fmt, va_list vl, char *line, int line_size, int *print_prefix) |
Format a line of log the same way as the default callback. More... | |
void | av_log_set_flags (int arg) |
int | av_log_get_flags (void) |
#define AV_LOG_C | ( | x | ) | ((x) << 8) |
Sets additional colors for extended debugging sessions.
Requires 256color terminal support. Uses outside debugging is not recommended.
#define AV_LOG_SKIP_REPEATED 1 |
Skip repeated messages, this requires the user app to use av_log() instead of (f)printf as the 2 would otherwise interfere and lead to "Last message repeated x times" messages below (f)printf messages with some bad luck.
Also to receive the last, "last repeated" line if any, the user app must call av_log(NULL, AV_LOG_QUIET, "%s", ""); at the end
#define AV_LOG_PRINT_LEVEL 2 |
void av_log | ( | void * | avcl, |
int | level, | ||
const char * | fmt, | ||
... | |||
) |
Send the specified message to the log if the level is less than or equal to the current av_log_level.
By default, all logging messages are sent to stderr. This behavior can be altered by setting a different logging callback function.
avcl | A pointer to an arbitrary struct of which the first field is a pointer to an AVClass struct or NULL if general log. |
level | The importance level of the message expressed using a Logging Constant. |
fmt | The format string (printf-compatible) that specifies how subsequent arguments are converted to output. |
Referenced by encode_write_frame(), filter_encode_write_frame(), flush_encoder(), init_filter(), init_filter_graph(), init_filters(), list_op(), main(), open_input_file(), open_output_file(), and process_client().
void void av_log_once | ( | void * | avcl, |
int | initial_level, | ||
int | subsequent_level, | ||
int * | state, | ||
const char * | fmt, | ||
... | |||
) |
Send the specified message to the log once with the initial_level and then with the subsequent_level.
By default, all logging messages are sent to stderr. This behavior can be altered by setting a different logging callback function.
avcl | A pointer to an arbitrary struct of which the first field is a pointer to an AVClass struct or NULL if general log. |
initial_level | importance level of the message expressed using a Logging Constant for the first occurance. |
subsequent_level | importance level of the message expressed using a Logging Constant after the first occurance. |
fmt | The format string (printf-compatible) that specifies how subsequent arguments are converted to output. |
state | a variable to keep trak of if a message has already been printed this must be initialized to 0 before the first use. The same state must not be accessed by 2 Threads simultaneously. |
void void void av_vlog | ( | void * | avcl, |
int | level, | ||
const char * | fmt, | ||
va_list | vl | ||
) |
Send the specified message to the log if the level is less than or equal to the current av_log_level.
By default, all logging messages are sent to stderr. This behavior can be altered by setting a different logging callback function.
avcl | A pointer to an arbitrary struct of which the first field is a pointer to an AVClass struct. |
level | The importance level of the message expressed using a Logging Constant. |
fmt | The format string (printf-compatible) that specifies how subsequent arguments are converted to output. |
vl | The arguments referenced by the format string. |
int av_log_get_level | ( | void | ) |
void av_log_set_level | ( | int | level | ) |
Set the log level.
level | Logging level |
Referenced by main().
void av_log_set_callback | ( | void(*)(void *, int, const char *, va_list) | callback | ) |
Set the logging callback.
callback | A logging function with a compatible signature. |
void av_log_default_callback | ( | void * | avcl, |
int | level, | ||
const char * | fmt, | ||
va_list | vl | ||
) |
Default logging callback.
It prints the message to stderr, optionally colorizing it.
avcl | A pointer to an arbitrary struct of which the first field is a pointer to an AVClass struct. |
level | The importance level of the message expressed using a Logging Constant. |
fmt | The format string (printf-compatible) that specifies how subsequent arguments are converted to output. |
vl | The arguments referenced by the format string. |
const char * av_default_item_name | ( | void * | ctx | ) |
AVClassCategory av_default_get_category | ( | void * | ptr | ) |
void av_log_format_line | ( | void * | ptr, |
int | level, | ||
const char * | fmt, | ||
va_list | vl, | ||
char * | line, | ||
int | line_size, | ||
int * | print_prefix | ||
) |
Format a line of log the same way as the default callback.
line | buffer to receive the formatted line |
line_size | size of the buffer |
print_prefix | used to store whether the prefix must be printed; must point to a persistent integer initially set to 1 |
int av_log_format_line2 | ( | void * | ptr, |
int | level, | ||
const char * | fmt, | ||
va_list | vl, | ||
char * | line, | ||
int | line_size, | ||
int * | print_prefix | ||
) |
Format a line of log the same way as the default callback.
line | buffer to receive the formatted line; may be NULL if line_size is 0 |
line_size | size of the buffer; at most line_size-1 characters will be written to the buffer, plus one null terminator |
print_prefix | used to store whether the prefix must be printed; must point to a persistent integer initially set to 1 |
void av_log_set_flags | ( | int | arg | ) |
int av_log_get_flags | ( | void | ) |