Replace calls to usec_sleep()

This is just dumb sed replacement to mp_sleep_us().

Also remove the now unused usec_sleep() wrapper.
This commit is contained in:
wm4 2013-05-25 19:56:52 +02:00
parent e56d8a200d
commit f44a242258
13 changed files with 15 additions and 24 deletions

View File

@ -1019,7 +1019,7 @@ static int AudioStreamChangeFormat( AudioStreamID i_stream_id, AudioStreamBasicD
AudioStreamBasicDescription actual_format;
int j;
for (j = 0; !stream_format_changed && j < 50; ++j)
usec_sleep(10000);
mp_sleep_us(10000);
if (stream_format_changed)
stream_format_changed = 0;
else
@ -1143,7 +1143,7 @@ static void uninit(int immed)
if (!immed) {
long long timeleft=(1000000LL*av_fifo_size(ao->buffer))/ao_data.bps;
ao_msg(MSGT_AO,MSGL_DBG2, "%d bytes left @%d bps (%d usec)\n", av_fifo_size(ao->buffer), ao_data.bps, (int)timeleft);
usec_sleep((int)timeleft);
mp_sleep_us((int)timeleft);
}
if (!ao->b_digital) {

View File

@ -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();

View File

@ -311,10 +311,10 @@ err_out:
// close audio device
static void uninit(int immed) {
if (!immed)
usec_sleep(get_delay() * 1000 * 1000);
mp_sleep_us(get_delay() * 1000 * 1000);
// HACK, make sure jack doesn't loop-output dirty buffers
reset();
usec_sleep(100 * 1000);
mp_sleep_us(100 * 1000);
jack_client_close(client);
av_fifo_free(buffer);
buffer = NULL;

View File

@ -211,7 +211,7 @@ static void uninit(int immed) {
ALint state;
alGetSourcei(sources[0], AL_SOURCE_STATE, &state);
while (state == AL_PLAYING) {
usec_sleep(10000);
mp_sleep_us(10000);
alGetSourcei(sources[0], AL_SOURCE_STATE, &state);
}
}

View File

@ -153,7 +153,7 @@ static void uninit(struct ao *ao, bool cut_audio)
* guaranteed by backend drivers, so we approximate this behavior.
*/
if (!cut_audio)
usec_sleep(rsd_delay_ms(priv->rd) * 1000);
mp_sleep_us(rsd_delay_ms(priv->rd) * 1000);
rsd_stop(priv->rd);
rsd_free(priv->rd);

View File

@ -1436,7 +1436,7 @@ static void read_events(struct input_ctx *ictx, int time)
}
#else
if (time > 0)
usec_sleep(time * 1000);
mp_sleep_us(time * 1000);
#endif

View File

@ -2029,7 +2029,7 @@ static double timing_sleep(struct MPContext *mpctx, double time_frame)
struct MPOpts *opts = &mpctx->opts;
double margin = opts->softsleep ? 0.011 : 0;
while (time_frame > margin) {
usec_sleep(1000000 * (time_frame - margin));
mp_sleep_us(1000000 * (time_frame - margin));
time_frame -= get_relative_time(mpctx);
}
if (opts->softsleep) {

View File

@ -42,12 +42,6 @@ double mp_time_sec(void)
return mp_time_us() / (double)(1000 * 1000);
}
int usec_sleep(int usec_delay)
{
mp_sleep_us(usec_delay);
return 0;
}
#if 0
#include <stdio.h>

View File

@ -38,7 +38,4 @@ uint64_t mp_raw_time_us(void);
// Sleep in microseconds.
void mp_sleep_us(int64_t us);
// Legacy timer functions. These can wrap.
int usec_sleep(int usec_delay);
#endif /* MPLAYER_TIMER_H */

View File

@ -441,9 +441,9 @@ static void cache_mainloop(cache_vars_t *s) {
#endif
if (sleep_count < INITIAL_FILL_USLEEP_COUNT) {
sleep_count++;
usec_sleep(INITIAL_FILL_USLEEP_TIME);
mp_sleep_us(INITIAL_FILL_USLEEP_TIME);
} else
usec_sleep(FILL_USLEEP_TIME); // idle
mp_sleep_us(FILL_USLEEP_TIME); // idle
#if FORKED_CACHE
sa.sa_handler = SIG_IGN;
sigaction(SIGUSR1, &sa, NULL);

View File

@ -295,7 +295,7 @@ static int stream_reconnect(stream_t *s)
"Connection lost! Attempting to reconnect...\n");
if (retry)
usec_sleep(RECONNECT_SLEEP_MS * 1000);
mp_sleep_us(RECONNECT_SLEEP_MS * 1000);
s->eof = 1;
stream_reset(s);
@ -630,7 +630,7 @@ void stream_set_interrupt_callback(int (*cb)(struct input_ctx *, int),
int stream_check_interrupt(int time)
{
if (!stream_check_interrupt_cb) {
usec_sleep(time * 1000);
mp_sleep_us(time * 1000);
return 0;
}
return stream_check_interrupt_cb(stream_check_interrupt_ctx, time);

View File

@ -475,7 +475,7 @@ static void wait_for_completion(struct vo *vo, int max_outstanding)
" for XShm completion events...\n");
ctx->Shm_Warned_Slow = 1;
}
usec_sleep(1000);
mp_sleep_us(1000);
vo_x11_check_events(vo);
}
}

View File

@ -685,7 +685,7 @@ static void wait_for_completion(struct vo *vo, int max_outstanding)
" for XShm completion events...\n");
ctx->Shm_Warned_Slow = 1;
}
usec_sleep(1000);
mp_sleep_us(1000);
vo_x11_check_events(vo);
}
}