Handbook
Glossary
(decode-audio) ( vorbis-stream offset -- offset' )
Vocabulary
audio
.
vorbis
.
private
Inputs
vorbis-stream
an
object
offset
an
object
Outputs
offset'
an
object
Definition
USING:
kernel
math
;
IN:
audio.vorbis.private
:
(decode-audio)
( vorbis-stream offset -- offset' )
over
get-pending-decoded-audio
dup
0
>
[
write-pcm-to-buffer
]
[
2drop
over
queue-audio
[
(decode-audio)
]
[
nip
]
if
]
if
;