summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/demuxers/demux_wav.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/demuxers/demux_wav.c b/src/demuxers/demux_wav.c
index 6d8f7895b..175b8a4e0 100644
--- a/src/demuxers/demux_wav.c
+++ b/src/demuxers/demux_wav.c
@@ -22,7 +22,7 @@
* MS WAV File Demuxer by Mike Melanson (melanson@pcisys.net)
* based on WAV specs that are available far and wide
*
- * $Id: demux_wav.c,v 1.56 2004/05/31 11:24:01 hadess Exp $
+ * $Id: demux_wav.c,v 1.57 2004/05/31 14:42:20 hadess Exp $
*/
#ifdef HAVE_CONFIG_H
@@ -355,7 +355,6 @@ static int demux_wav_get_status (demux_plugin_t *this_gen) {
static int demux_wav_get_stream_length (demux_plugin_t *this_gen) {
demux_wav_t *this = (demux_wav_t *) this_gen;
- printf ("(int)((int64_t) %lld * 1000 / %d) = %d\n", this->data_size ,this->wave->nAvgBytesPerSec, (int)((int64_t) this->data_size * 1000 / this->wave->nAvgBytesPerSec));
return (int)((int64_t) this->data_size * 1000 / this->wave->nAvgBytesPerSec);
}