Debug message fix
authorNelson Ferreira <nelson.ferreira@ieee.org>
Sat, 16 Jan 2016 22:18:36 +0000 (17:18 -0500)
committerNelson Ferreira <nelson.ferreira@ieee.org>
Sat, 16 Jan 2016 22:18:36 +0000 (17:18 -0500)
* src/media/media.c (sxe_msf_DBL_down): Minor fix on debug
message, it is DBL not FLT.

Signed-off-by: Nelson Ferreira <nelson.ferreira@ieee.org>
src/media/media.c

index 3d9f973..1359791 100644 (file)
@@ -1331,7 +1331,7 @@ sxe_msf_DBL_down(void *d, void *s, size_t len)
        int32_t *src = s;
 
        /* len is the number of samples (== #frame * #channels) */
-       MEDIA_DEBUG_FMT("downsampling internal->FLT: %u samples\n", len);
+       MEDIA_DEBUG_FMT("downsampling internal->DBL: %u samples\n", len);
 
        for (i = len-1; i >= 0; i--) {
                dst[i] = (double)(src[i]) / SXE_MAX_S24;