diff options
author | wm4 <wm4@nowhere> | 2013-05-25 19:56:52 +0200 |
---|---|---|
committer | wm4 <wm4@nowhere> | 2013-05-26 16:44:20 +0200 |
commit | f44a242258c282eb1407899a64571c39d010285b (patch) | |
tree | 0582ab64904258650db3f8631ee8628b8745cf8e /audio/out/ao_dsound.c | |
parent | e56d8a200d900066c3da571d92733f66ce6a13ab (diff) | |
download | mpv-f44a242258c282eb1407899a64571c39d010285b.tar.bz2 mpv-f44a242258c282eb1407899a64571c39d010285b.tar.xz |
Replace calls to usec_sleep()
This is just dumb sed replacement to mp_sleep_us().
Also remove the now unused usec_sleep() wrapper.
Diffstat (limited to 'audio/out/ao_dsound.c')
-rw-r--r-- | audio/out/ao_dsound.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/audio/out/ao_dsound.c b/audio/out/ao_dsound.c index 967084d3ae..f57d7cd96e 100644 --- a/audio/out/ao_dsound.c +++ b/audio/out/ao_dsound.c @@ -531,7 +531,7 @@ static void audio_resume(void) static void uninit(int immed) { if (!immed) - usec_sleep(get_delay() * 1000000); + mp_sleep_us(get_delay() * 1000000); reset(); DestroyBuffer(); |