/third_party/ffmpeg/libavutil/ |
D | log.c | 292 static void format_line(void *avcl, int level, const char *fmt, va_list vl, in format_line() argument 295 AVClass* avc = avcl ? *(AVClass **) avcl : NULL; in format_line() 304 AVClass** parent = *(AVClass ***) (((uint8_t *) avcl) + in format_line() 313 avc->item_name(avcl), avcl); in format_line() 314 if(type) type[1] = get_category(avcl); in format_line() 407 void av_log(void* avcl, int level, const char *fmt, ...) in av_log() argument 411 av_vlog(avcl, level, fmt, vl); in av_log() 415 void av_log_once(void* avcl, int initial_level, int subsequent_level, int *state, const char *fmt, … in av_log_once() argument 419 av_vlog(avcl, *state ? subsequent_level : initial_level, fmt, vl); in av_log_once() 424 void av_vlog(void* avcl, int level, const char *fmt, va_list vl) in av_vlog() argument [all …]
|
D | log.h | 252 void av_log(void *avcl, int level, const char *fmt, ...) av_printf_format(3, 4); 273 void av_log_once(void* avcl, int initial_level, int subsequent_level, int *state, const char *fmt, … 291 void av_vlog(void *avcl, int level, const char *fmt, va_list vl); 336 void av_log_default_callback(void *avcl, int level, const char *fmt,
|
/third_party/ffmpeg/libavcodec/ |
D | fits.c | 98 av_log(avcl, AV_LOG_ERROR, "expected %s keyword, found %s = %s\n", key, keyword, value); \ 104 av_log(avcl, AV_LOG_ERROR, "invalid value of %s keyword, %s = %s\n", key, keyword, value); \ 108 int avpriv_fits_header_parse_line(void *avcl, FITSHeader *header, const uint8_t line[80], AVDiction… in avpriv_fits_header_parse_line() argument 121 av_log(avcl, AV_LOG_WARNING, "not a standard FITS file\n"); in avpriv_fits_header_parse_line() 123 av_log(avcl, AV_LOG_ERROR, "invalid value of SIMPLE keyword, SIMPLE = %c\n", value[0]); in avpriv_fits_header_parse_line() 148 av_log(avcl, AV_LOG_ERROR, "invalid value of BITPIX %d\n", header->bitpix); \ in avpriv_fits_header_parse_line() 170 …av_log(avcl, AV_LOG_ERROR, "expected NAXIS%d keyword, found %s = %s\n", header->naxis_index + 1, k… in avpriv_fits_header_parse_line() 175 …av_log(avcl, AV_LOG_ERROR, "invalid value of NAXIS%d keyword, %s = %s\n", header->naxis_index + 1,… in avpriv_fits_header_parse_line()
|
D | fits.h | 81 int avpriv_fits_header_parse_line(void *avcl, FITSHeader *header, const uint8_t line[80], AVDiction…
|
/third_party/ffmpeg/libavformat/ |
D | dump.c | 44 av_log(avcl, level, __VA_ARGS__); \ 49 static void hex_dump_internal(void *avcl, FILE *f, int level, in hex_dump_internal() argument 81 void av_hex_dump_log(void *avcl, int level, const uint8_t *buf, int size) in av_hex_dump_log() argument 83 hex_dump_internal(avcl, NULL, level, buf, size); in av_hex_dump_log() 86 static void pkt_dump_internal(void *avcl, FILE *f, int level, const AVPacket *pkt, in pkt_dump_internal() argument 107 hex_dump_internal(avcl, f, level, pkt->data, pkt->size); in pkt_dump_internal() 115 void av_pkt_dump_log2(void *avcl, int level, const AVPacket *pkt, int dump_payload, in av_pkt_dump_log2() argument 118 pkt_dump_internal(avcl, NULL, level, pkt, dump_payload, st->time_base); in av_pkt_dump_log2()
|
D | avformat.h | 2684 void av_hex_dump_log(void *avcl, int level, const uint8_t *buf, int size); 2708 void av_pkt_dump_log2(void *avcl, int level, const AVPacket *pkt, int dump_payload,
|
/third_party/ffmpeg/libavformat/tests/ |
D | movenc.c | 82 static void count_warnings(void *avcl, int level, const char *fmt, va_list vl) in count_warnings() argument
|