FFmpeg
|
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) |
#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. |
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. |
Definition at line 431 of file log.c.
Referenced by ass_log(), av_log(), av_log_once(), libdav1d_log_callback(), missing_feature_sample(), print_log(), rtmp_log(), vs2av_log(), X264_log(), and XAVS_log().
int av_log_get_level | ( | void | ) |
Get the current log level.
Definition at line 442 of file log.c.
Referenced by avcodec_string(), check_keyboard_interaction(), check_semiplanar(), check_yuv2rgb(), config_input(), filter_frame(), get_log_level(), hex_log(), init(), init_report(), libwebp_anim_encode_init(), lookup_signatures(), opt_loglevel(), print_report(), rtmp_open(), tls_open(), video_refresh(), vvenc_init(), and vvenc_set_verbository().
void av_log_set_level | ( | int | level | ) |
Set the log level.
level | Logging level |
Definition at line 447 of file log.c.
Referenced by check_keyboard_interaction(), check_semiplanar(), check_yuv2rgb(), LLVMFuzzerTestOneInput(), main(), opt_default(), opt_loglevel(), test_av_parse_color(), test_av_parse_time(), and test_av_small_strptime().
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. |
Definition at line 462 of file log.c.
Referenced by init_count_warnings(), init_report(), main(), reset_count_warnings(), show_buildconf(), show_help(), show_help_default(), and show_version().
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. |
Definition at line 353 of file log.c.
Referenced by log_callback(), log_callback_report(), and reset_count_warnings().
const char* av_default_item_name | ( | void * | ctx | ) |
Return the context name.
ctx | The AVClass context |
Definition at line 237 of file log.c.
Referenced by av_parse_cpu_caps(), ist_add(), item_name(), of_parse_group_token(), opt_abort_on(), opt_cpucount(), and vs2av_log().
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 |
Definition at line 335 of file log.c.
Referenced by log_callback(), and log_callback_report().
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 |
Definition at line 341 of file log.c.
Referenced by av_log_format_line(), and call_log_format_line2().
void av_log_set_flags | ( | int | arg | ) |
Definition at line 452 of file log.c.
Referenced by main(), and opt_loglevel().
int av_log_get_flags | ( | void | ) |
Definition at line 457 of file log.c.
Referenced by opt_loglevel().