We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c98102e commit c22a83bCopy full SHA for c22a83b
dsp.c
@@ -657,7 +657,8 @@ static void handle_tstp(int is_paused)
657
do { \
658
const int do_dither = SHOULD_DITHER(in_codecs.head, out_codec, chain_needs_dither); \
659
add_dither = effects_chain_set_dither_params(&chain, out_codec->prec, do_dither); \
660
- LOG_FMT(LL_VERBOSE, "info: dither %s", (do_dither) ? "on" : "off"); \
+ LOG_FMT(LL_VERBOSE, "info: auto dither %s%s", (do_dither) ? "on" : "off", \
661
+ (do_dither && !add_dither) ? " (effect)" : ""); \
662
} while (0)
663
664
int main(int argc, char *argv[])
0 commit comments