diff decoders/raw.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/raw.c	Sat May 08 22:06:14 2004 +0000
+++ b/decoders/raw.c	Wed May 12 02:15:00 2004 +0000
@@ -135,8 +135,8 @@
 
     sample_rate =  (sample->actual.rate * sample->actual.channels
       * ( (sample->actual.format & 0x0018) >> 3) );
-    sample->total_time = ( pos ) / sample_rate * 1000;
-    sample->total_time += (pos % sample_rate) * 1000 / sample_rate;
+    internal->total_time = ( pos ) / sample_rate * 1000;
+    internal->total_time += (pos % sample_rate) * 1000 / sample_rate;
 
     return(1); /* we'll handle this data. */
 } /* RAW_open */