FFmpeg
|
logging functions More...
#include "config.h"
#include <stdarg.h>
#include <stdlib.h>
#include "avutil.h"
#include "bprint.h"
#include "common.h"
#include "internal.h"
#include "log.h"
Go to the source code of this file.
Macros | |
#define | LINE_SZ 1024 |
#define | NB_LEVELS 8 |
Functions | |
static void | check_color_terminal (void) |
static void | colored_fputs (int level, int tint, const char *str) |
const char * | av_default_item_name (void *ptr) |
Return the context name. More... | |
AVClassCategory | av_default_get_category (void *ptr) |
static void | sanitize (uint8_t *line) |
static int | get_category (void *ptr) |
static const char * | get_level_str (int level) |
static void | format_line (void *avcl, int level, const char *fmt, va_list vl, AVBPrint part[4], int *print_prefix, int type[2]) |
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_default_callback (void *ptr, int level, const char *fmt, va_list vl) |
Default logging callback. More... | |
void | av_log (void *avcl, int level, const char *fmt,...) |
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_flags (int arg) |
int | av_log_get_flags (void) |
void | av_log_set_callback (void(*callback)(void *, int, const char *, va_list)) |
Set the logging callback. More... | |
static void | missing_feature_sample (int sample, void *avc, const char *msg, va_list argument_list) |
void | avpriv_request_sample (void *avc, const char *msg,...) |
void | avpriv_report_missing_feature (void *avc, const char *msg,...) |
Variables | |
static int | av_log_level = AV_LOG_INFO |
static int | flags |
static const uint32_t | color [16+AV_CLASS_CATEGORY_NB] |
static int | use_color = -1 |
static void(* | av_log_callback )(void *, int, const char *, va_list) |
logging functions
Definition in file log.c.
#define LINE_SZ 1024 |
Definition at line 48 of file log.c.
Referenced by av_log_default_callback().
#define NB_LEVELS 8 |
Definition at line 59 of file log.c.
Referenced by av_log_default_callback().
Definition at line 125 of file log.c.
Referenced by colored_fputs().
|
static |
Definition at line 150 of file log.c.
Referenced by av_log_default_callback().
Definition at line 203 of file log.c.
Referenced by av_log_default_callback().
|
static |
Definition at line 211 of file log.c.
Referenced by format_line().
|
static |
Definition at line 224 of file log.c.
Referenced by format_line().
|
static |
Definition at line 248 of file log.c.
Referenced by av_log_default_callback(), and av_log_format_line2().
Definition at line 367 of file log.c.
Referenced by main(), and missing_feature_sample().
|
static |
Definition at line 411 of file log.c.
Referenced by avpriv_report_missing_feature(), and avpriv_request_sample().
|
static |
Definition at line 56 of file log.c.
Referenced by av_log_default_callback(), av_log_get_level(), and av_log_set_level().
|
static |
Definition at line 57 of file log.c.
Referenced by av_log_default_callback(), av_log_get_flags(), av_log_set_flags(), and format_line().
|
static |
Definition at line 94 of file log.c.
Referenced by av_get_known_color_name(), cdg_load_palette(), cdg_scroll(), cdg_tile_block(), color_get(), color_inc(), config_output(), config_props(), copy_color_mask(), create_cv_pixel_buffer(), decode_format80(), decode_hextile(), decode_rle(), draw_curves(), draw_line(), dvb_encode_rle2(), dvb_encode_rle4(), dvb_encode_rle8(), dvd_encode_rle(), ff_fill_rectangle(), ff_snow_pred_block(), fill_frame(), guess_dc(), main(), mm_decode_inter(), mm_decode_intra(), modplug_read_packet(), mp_get_yuv_from_rgb(), mp_set_rgb_from_yuv(), overlay_ass_image(), plot_freqs(), rle_decode(), select_palette(), set_frame(), and test_av_get_known_color_name().
|
static |
Definition at line 123 of file log.c.
Referenced by check_color_terminal(), color_printf(), colored_fputs(), and main().
Definition at line 364 of file log.c.
Referenced by av_log_set_callback(), and av_vlog().