From 4d7565a24524ef96199e34b3a4c55b4f768f9161 Mon Sep 17 00:00:00 2001 From: Jean-Baptiste Kempf Date: Mon, 29 Apr 2013 01:00:39 +0200 Subject: [PATCH] DirectSound: remove trailing space --- modules/audio_output/directx.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/modules/audio_output/directx.c b/modules/audio_output/directx.c index 2e02277ca5..5c36eedb96 100644 --- a/modules/audio_output/directx.c +++ b/modules/audio_output/directx.c @@ -64,8 +64,8 @@ struct aout_sys_t bool mute; } volume; - int i_bytes_per_sample; /* Size in bytes of one frame */ - int i_rate; /* Sample rate */ + int i_bytes_per_sample; /* Size in bytes of one frame */ + int i_rate; /* Sample rate */ uint8_t chans_to_reorder; /* do we need channel reordering */ uint8_t chan_table[AOUT_CHAN_MAX]; @@ -598,7 +598,7 @@ static int CreateDSBuffer( audio_output_t *p_aout, int i_format, (void **) &p_aout->sys->p_notify ) != DS_OK ) { - + msg_Err(p_aout, "Couldn't query IDirectSoundNotify"); p_aout->sys->p_notify = NULL; } @@ -901,7 +901,7 @@ static void Flush ( audio_output_t * aout, bool drain ) else { IDirectSoundBuffer_Stop( aout->sys->p_dsbuffer ); - IDirectSoundBuffer_SetCurrentPosition( aout->sys->p_dsbuffer, + IDirectSoundBuffer_SetCurrentPosition( aout->sys->p_dsbuffer, aout->sys->i_write ); } } -- 2.11.4.GIT