Skip to content

Commit c22a83b

Browse files
committed
dsp.c: Report dither source.
1 parent c98102e commit c22a83b

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

dsp.c

+2-1
Original file line numberDiff line numberDiff line change
@@ -657,7 +657,8 @@ static void handle_tstp(int is_paused)
657657
do { \
658658
const int do_dither = SHOULD_DITHER(in_codecs.head, out_codec, chain_needs_dither); \
659659
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"); \
660+
LOG_FMT(LL_VERBOSE, "info: auto dither %s%s", (do_dither) ? "on" : "off", \
661+
(do_dither && !add_dither) ? " (effect)" : ""); \
661662
} while (0)
662663

663664
int main(int argc, char *argv[])

0 commit comments

Comments
 (0)