/third_party/ffmpeg/libavutil/ |
H A D | log.c | 294 static void format_line(void *avcl, int level, const char *fmt, va_list vl, in format_line() argument 297 AVClass* avc = avcl ? *(AVClass **) avcl : NULL; in format_line() 306 AVClass** parent = *(AVClass ***) (((uint8_t *) avcl) + in format_line() 315 avc->item_name(avcl), avcl); in format_line() 316 if(type) type[1] = get_category(avcl); in format_line() 409 void av_log(void* avcl, int level, const char *fmt, ...) in av_log() argument 413 av_vlog(avcl, level, fmt, vl); in av_log() 417 void av_log_once(void* avcl, in argument 426 av_vlog(void* avcl, int level, const char *fmt, va_list vl) av_vlog() argument [all...] |
H A D | log.h | 231 * @param avcl A pointer to an arbitrary struct of which the first field is a 238 void av_log(void *avcl, int level, const char *fmt, ...) av_printf_format(3, 4); 247 * @param avcl A pointer to an arbitrary struct of which the first field is a 259 void av_log_once(void* avcl, int initial_level, int subsequent_level, int *state, const char *fmt, ...) av_printf_format(5, 6); 269 * @param avcl A pointer to an arbitrary struct of which the first field is a 277 void av_vlog(void *avcl, int level, const char *fmt, va_list vl); 314 * @param avcl A pointer to an arbitrary struct of which the first field is a 322 void av_log_default_callback(void *avcl, int level, const char *fmt,
|
/third_party/ffmpeg/libavformat/ |
H A D | dump.c | 45 av_log(avcl, level, __VA_ARGS__); \ 50 static void hex_dump_internal(void *avcl, FILE *f, int level, in hex_dump_internal() argument 82 void av_hex_dump_log(void *avcl, int level, const uint8_t *buf, int size) in av_hex_dump_log() argument 84 hex_dump_internal(avcl, NULL, level, buf, size); in av_hex_dump_log() 87 static void pkt_dump_internal(void *avcl, FILE *f, int level, const AVPacket *pkt, in pkt_dump_internal() argument 108 hex_dump_internal(avcl, f, level, pkt->data, pkt->size); in pkt_dump_internal() 116 void av_pkt_dump_log2(void *avcl, int level, const AVPacket *pkt, int dump_payload, in av_pkt_dump_log2() argument 119 pkt_dump_internal(avcl, NULL, level, pkt, dump_payload, st->time_base); in av_pkt_dump_log2()
|
H A D | avformat.h | 2571 * @param avcl A pointer to an arbitrary struct of which the first field is a 2580 void av_hex_dump_log(void *avcl, int level, const uint8_t *buf, int size); 2596 * @param avcl A pointer to an arbitrary struct of which the first field is a 2604 void av_pkt_dump_log2(void *avcl, int level, const AVPacket *pkt, int dump_payload,
|
/third_party/ffmpeg/libavcodec/ |
H A D | fits.h | 75 * @param avcl used in av_log 81 int avpriv_fits_header_parse_line(void *avcl, FITSHeader *header, const uint8_t line[80], AVDictionary ***metadata);
|
/third_party/ffmpeg/libavformat/tests/ |
H A D | movenc.c | 82 static void count_warnings(void *avcl, int level, const char *fmt, va_list vl) in count_warnings() argument
|