| 2496 | }; |
| 2497 | |
| 2498 | static 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 | |
| 2509 | static void decodeAudio(hb_work_private_t *pv, packet_info_t * packet_info) |
| 2510 | { |
no test coverage detected