From 1a976d453fc7c1a983f90d796028c42b6a59f681 Mon Sep 17 00:00:00 2001 From: reimar Date: Wed, 30 Jan 2008 22:28:41 +0000 Subject: alSourceRewindv seems to be broken in particular in Creatives Windows-Implementation, use alSourceStopv instead. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25938 b3059339-0415-0410-9bf9-f77b7e298cf2 --- libao2/ao_openal.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libao2') diff --git a/libao2/ao_openal.c b/libao2/ao_openal.c index d9509c0eb6..57de5f9b01 100644 --- a/libao2/ao_openal.c +++ b/libao2/ao_openal.c @@ -173,7 +173,7 @@ static void unqueue_buffers(void) { * \brief stop playing and empty buffers (for seeking/pause) */ static void reset(void) { - alSourceRewindv(ao_data.channels, sources); + alSourceStopv(ao_data.channels, sources); unqueue_buffers(); } -- cgit v1.2.3