diff decoders/wav.c @ 477:3e705c9180e5

Fixed binary compatibility, added Sound_GetDuration().
author Ryan C. Gordon <icculus@icculus.org>
date Wed, 12 May 2004 02:15:00 +0000
parents c66080364dff
children 2df1f5c62d38
line wrap: on
line diff
--- a/decoders/wav.c	Sat May 08 22:06:14 2004 +0000
+++ b/decoders/wav.c	Wed May 12 02:15:00 2004 +0000
@@ -724,9 +724,9 @@
                                sample->actual.channels );
     internal->decoder_private = (void *) w;
 
-    sample->total_time = (fmt->total_bytes / fmt->dwAvgBytesPerSec) * 1000;
-    sample->total_time += (fmt->total_bytes % fmt->dwAvgBytesPerSec)
-                       *  1000 / fmt->dwAvgBytesPerSec;
+    internal->total_time = (fmt->total_bytes / fmt->dwAvgBytesPerSec) * 1000;
+    internal->total_time += (fmt->total_bytes % fmt->dwAvgBytesPerSec)
+                              *  1000 / fmt->dwAvgBytesPerSec;
 
     sample->flags = SOUND_SAMPLEFLAG_NONE;
     if (fmt->seek_sample != NULL)