MCPcopy Create free account
hub / github.com/HandBrake/HandBrake / log_decoder_downmix_mismatch

Function log_decoder_downmix_mismatch

libhb/decavcodec.c:2498–2507  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2496};
2497
2498static void log_decoder_downmix_mismatch(uint64_t downmix_mask, uint64_t decoded_mask)
2499{
2500 char buf[2][256];
2501 char *req = channel_layout_name_from_mask(downmix_mask, buf[0], sizeof(buf[0]));
2502 char *got = channel_layout_name_from_mask(decoded_mask, buf[1], sizeof(buf[1]));
2503 hb_deep_log(2,
2504 "decavcodec: requested channel layout '%s' via decoder downmix "
2505 "but decoded audio has channel layout '%s' instead",
2506 req ? req : "(null)", got ? got : "(null)");
2507}
2508
2509static void decodeAudio(hb_work_private_t *pv, packet_info_t * packet_info)
2510{

Callers 1

decodeAudioFunction · 0.85

Calls 2

hb_deep_logFunction · 0.85

Tested by

no test coverage detected