summaryrefslogtreecommitdiff
path: root/apps/plugins/flac2wav.c
diff options
context:
space:
mode:
authorJens Arnold <amiconn@rockbox.org>2005-02-25 00:46:41 +0000
committerJens Arnold <amiconn@rockbox.org>2005-02-25 00:46:41 +0000
commitcb78646baf67e4656252cbd8b7017514271b0d07 (patch)
tree1c793e2196fa650dd0c813e9125a28c7e49b9b29 /apps/plugins/flac2wav.c
parent6e372abb0ee1974dc4fe3003a1182c0d8dc662af (diff)
downloadrockbox-cb78646baf67e4656252cbd8b7017514271b0d07.tar.gz
rockbox-cb78646baf67e4656252cbd8b7017514271b0d07.zip
Codec test plugins: use DEBUGF() instead of (not cleanly avaliable) printf().
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@6052 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins/flac2wav.c')
-rw-r--r--apps/plugins/flac2wav.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/apps/plugins/flac2wav.c b/apps/plugins/flac2wav.c
index f68f3204f4..84b5ed15b2 100644
--- a/apps/plugins/flac2wav.c
+++ b/apps/plugins/flac2wav.c
@@ -64,9 +64,7 @@ FLAC__StreamDecoderWriteStatus flac_write_handler(const FLAC__SeekableStreamDeco
64 64
65 if (samples*frame->header.channels > (FLAC_MAX_SUPPORTED_BLOCKSIZE*FLAC_MAX_SUPPORTED_CHANNELS)) { 65 if (samples*frame->header.channels > (FLAC_MAX_SUPPORTED_BLOCKSIZE*FLAC_MAX_SUPPORTED_CHANNELS)) {
66 // ERROR!!! 66 // ERROR!!!
67#ifdef SIMULATOR 67 DEBUGF("ERROR: samples*frame->header.channels=%d\n",samples*frame->header.channels);
68 printf("ERROR: samples*frame->header.channels=%d\n",samples*frame->header.channels);
69#endif
70 return(FLAC__STREAM_DECODER_WRITE_STATUS_CONTINUE); 68 return(FLAC__STREAM_DECODER_WRITE_STATUS_CONTINUE);
71 } 69 }
72 70