]> gitweb.factorcode.org Git - factor.git/blobdiff - extra/audio/vorbis/vorbis.factor
Remove usages of <void*> and *void*
[factor.git] / extra / audio / vorbis / vorbis.factor
index e67c7b7934ebf3a72a05a93d3810301f08af732b..7e69aea7b4256cdb18d4397cdbbf72d4deb849f1 100644 (file)
@@ -157,7 +157,7 @@ ERROR: no-vorbis-in-ogg ;
     [ init-vorbis-codec ] if ;
 
 : get-pending-decoded-audio ( vorbis-stream -- pcm len )
-    dsp-state>> f <void*> [ vorbis_synthesis_pcmout ] keep *void* swap ;
+    dsp-state>> f void* <ref> [ vorbis_synthesis_pcmout ] keep void* deref swap ;
 
 : float>short-sample ( float -- short )
     -32767.5 * 0.5 - >integer -32768 32767 clamp ; inline