summaryrefslogtreecommitdiff
path: root/apps/codecs/flac.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/codecs/flac.c')
-rw-r--r--apps/codecs/flac.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/codecs/flac.c b/apps/codecs/flac.c
index 61605bc9ec..725157720e 100644
--- a/apps/codecs/flac.c
+++ b/apps/codecs/flac.c
@@ -69,7 +69,7 @@ FLAC__StreamDecoderWriteStatus flac_write_handler(const FLAC__SeekableStreamDeco
69 69
70 if (samples*frame->header.channels > (FLAC_MAX_SUPPORTED_BLOCKSIZE*FLAC_MAX_SUPPORTED_CHANNELS)) { 70 if (samples*frame->header.channels > (FLAC_MAX_SUPPORTED_BLOCKSIZE*FLAC_MAX_SUPPORTED_CHANNELS)) {
71 // ERROR!!! 71 // ERROR!!!
72 DEBUGF("ERROR: samples*frame->header.channels=%d\n",samples*frame->header.channels); 72 // DEBUGF("ERROR: samples*frame->header.channels=%d\n",samples*frame->header.channels);
73 return FLAC__STREAM_DECODER_WRITE_STATUS_CONTINUE; 73 return FLAC__STREAM_DECODER_WRITE_STATUS_CONTINUE;
74 } 74 }
75 75