From 513faef5d1fc4add033dc1f66b425470b38e16c6 Mon Sep 17 00:00:00 2001 From: Andre Noll Date: Tue, 17 Sep 2024 12:42:58 +0200 Subject: [PATCH] aac_afh: Remove noisy debug message. This may be printed thousands of times. which is a bit over the top, even for the debug loglevel. --- aac_afh.c | 1 - 1 file changed, 1 deletion(-) diff --git a/aac_afh.c b/aac_afh.c index c4301a2f..d50898fc 100644 --- a/aac_afh.c +++ b/aac_afh.c @@ -35,7 +35,6 @@ static ssize_t aac_afh_read_cb(void *user_data, void *dest, size_t want) return 0; have = c->mapsize - c->fpos; rv = PARA_MIN(have, want); - PARA_DEBUG_LOG("reading %zu bytes @%zu\n", rv, c->fpos); memcpy(dest, c->map + c->fpos, rv); c->fpos += rv; return rv; -- 2.39.5