Go to the documentation of this file.
   49 #define AV_IS_INPUT_DEVICE(category) \ 
   50     (((category) == AV_CLASS_CATEGORY_DEVICE_VIDEO_INPUT) || \ 
   51      ((category) == AV_CLASS_CATEGORY_DEVICE_AUDIO_INPUT) || \ 
   52      ((category) == AV_CLASS_CATEGORY_DEVICE_INPUT)) 
   54 #define AV_IS_OUTPUT_DEVICE(category) \ 
   55     (((category) == AV_CLASS_CATEGORY_DEVICE_VIDEO_OUTPUT) || \ 
   56      ((category) == AV_CLASS_CATEGORY_DEVICE_AUDIO_OUTPUT) || \ 
   57      ((category) == AV_CLASS_CATEGORY_DEVICE_OUTPUT)) 
   77     const char* (*item_name)(
void* 
ctx);
 
  131     void* (*child_next)(
void *obj, 
void *prev);
 
  146     const struct AVClass* (*child_class_iterate)(
void **iter);
 
  162 #define AV_LOG_QUIET    -8 
  167 #define AV_LOG_PANIC     0 
  174 #define AV_LOG_FATAL     8 
  180 #define AV_LOG_ERROR    16 
  186 #define AV_LOG_WARNING  24 
  191 #define AV_LOG_INFO     32 
  196 #define AV_LOG_VERBOSE  40 
  201 #define AV_LOG_DEBUG    48 
  206 #define AV_LOG_TRACE    56 
  208 #define AV_LOG_MAX_OFFSET (AV_LOG_TRACE - AV_LOG_QUIET) 
  222 #define AV_LOG_C(x) ((x) << 8) 
  277 void av_vlog(
void *avcl, 
int level, const 
char *fmt, va_list vl);
 
  343                         char *
line, 
int line_size, 
int *print_prefix);
 
  360                         char *
line, 
int line_size, 
int *print_prefix);
 
  370 #define AV_LOG_SKIP_REPEATED 1 
  378 #define AV_LOG_PRINT_LEVEL 2 
  
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.
@ AV_CLASS_CATEGORY_DECODER
int version
LIBAVUTIL_VERSION with which this structure was created.
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.
@ AV_CLASS_CATEGORY_INPUT
@ AV_CLASS_CATEGORY_OUTPUT
@ AV_CLASS_CATEGORY_DEVICE_INPUT
@ AV_CLASS_CATEGORY_DEVICE_AUDIO_INPUT
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.
int(* query_ranges)(struct AVOptionRanges **, void *obj, const char *key, int flags)
Callback to return the supported/allowed ranges.
@ AV_CLASS_CATEGORY_NB
not part of ABI/API
static void callback(void *priv_data, int index, uint8_t *buf, int buf_size, int64_t time, enum dshowDeviceType devtype)
@ AV_CLASS_CATEGORY_DEMUXER
int av_log_get_level(void)
Get the current log level.
Describe the class of an AVClass context structure.
const char * av_default_item_name(void *ctx)
Return the context name.
#define av_printf_format(fmtpos, attrpos)
void av_log_set_flags(int arg)
@ AV_CLASS_CATEGORY_DEVICE_VIDEO_OUTPUT
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.
@ AV_CLASS_CATEGORY_DEVICE_VIDEO_INPUT
@ AV_CLASS_CATEGORY_FILTER
void av_log_set_callback(void(*callback)(void *, int, const char *, va_list))
Set the logging callback.
AVClassCategory category
Category used for visualization (like color) This is only set if the category is equal for all object...
AVClassCategory(* get_category)(void *ctx)
Callback to return the category.
int av_log_get_flags(void)
@ AV_CLASS_CATEGORY_SWRESAMPLER
void av_log_set_level(int level)
Set the log level.
@ AV_CLASS_CATEGORY_DEVICE_AUDIO_OUTPUT
List of AVOptionRange structs.
const char * class_name
The name of the class; usually it is the same name as the context structure type to which the AVClass...
@ AV_CLASS_CATEGORY_MUXER
const struct AVOption * option
a pointer to the first option specified in the class if any or NULL
AVClassCategory av_default_get_category(void *ptr)
@ AV_CLASS_CATEGORY_SWSCALER
@ AV_CLASS_CATEGORY_DEVICE_OUTPUT
void av_log_default_callback(void *avcl, int level, const char *fmt, va_list vl)
Default logging callback.
@ AV_CLASS_CATEGORY_BITSTREAM_FILTER
int log_level_offset_offset
Offset in the structure where log_level_offset is stored.
#define flags(name, subs,...)
@ AV_CLASS_CATEGORY_ENCODER
int parent_log_context_offset
Offset in the structure where a pointer to the parent context for logging is stored.
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.