summaryrefslogtreecommitdiff
path: root/src/audio_out/audio_directx2_out.c
diff options
context:
space:
mode:
authorFrantišek Dvořák <valtri@users.sourceforge.net>2005-02-06 19:16:18 +0000
committerFrantišek Dvořák <valtri@users.sourceforge.net>2005-02-06 19:16:18 +0000
commit8bacb137f813721b0cf6f40049007c195dae1944 (patch)
treea23e66845e48df55062dc091ea330f49e9b7f288 /src/audio_out/audio_directx2_out.c
parenta7dbf248a61c72af76213dcee3a8e3f51ac6d23c (diff)
downloadxine-lib-8bacb137f813721b0cf6f40049007c195dae1944.tar.gz
xine-lib-8bacb137f813721b0cf6f40049007c195dae1944.tar.bz2
**BUGFIX**
Updated win32 M$VC port. CVS patchset: 7386 CVS date: 2005/02/06 19:16:18
Diffstat (limited to 'src/audio_out/audio_directx2_out.c')
-rw-r--r--src/audio_out/audio_directx2_out.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/audio_out/audio_directx2_out.c b/src/audio_out/audio_directx2_out.c
index 48d45cec3..a86920e0f 100644
--- a/src/audio_out/audio_directx2_out.c
+++ b/src/audio_out/audio_directx2_out.c
@@ -17,7 +17,7 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*
- * $Id: audio_directx2_out.c,v 1.1 2005/02/04 22:31:32 valtri Exp $
+ * $Id: audio_directx2_out.c,v 1.2 2005/02/06 19:16:18 valtri Exp $
*
*
* xine audio output plugin using DirectX
@@ -425,7 +425,7 @@ static int audio_fill(dx2_driver_t *this, char *data, size_t size) {
err = IDirectSoundBuffer_Lock(this->dsbuffer, (this->count * this->part_size + this->read_size) % this->buffer_size, size, &ptr1, &size1, &ptr2, &size2, 0);
/* try to restore the buffer, if necessary */
if (err == DSERR_BUFFERLOST) {
- xine_log(this->class->xine, XINE_LOG_MSG, _(LOG_MODULE ": buffer lost, try to restore\n"));
+ xine_log(this->class->xine, XINE_LOG_MSG, _(LOG_MODULE ": buffer lost, tryig to restore\n"));
IDirectSoundBuffer_Restore(this->dsbuffer);
err = IDirectSoundBuffer_Lock(this->dsbuffer, (this->count * this->part_size + this->read_size) % this->buffer_size, size, &ptr1, &size1, &ptr2, &size2, 0); }
if (err != DS_OK) {