Browse Source

Move the clock_gettime2 and add_time_in_ms implementation to event.c to avoid code duplication.

master
Reece H. Dunn 9 years ago
parent
commit
2e88afeaa0
4 changed files with 27 additions and 84 deletions
  1. 27
    0
      src/libespeak-ng/event.c
  2. 0
    27
      src/libespeak-ng/wave.c
  3. 0
    31
      src/libespeak-ng/wave_pulse.c
  4. 0
    26
      src/libespeak-ng/wave_sada.c

+ 27
- 0
src/libespeak-ng/event.c View File

@@ -478,3 +478,30 @@ void event_terminate()
thread_inited = 0;
}
}

enum { ONE_BILLION = 1000000000 };

void clock_gettime2(struct timespec *ts)
{
struct timeval tv;

if (!ts)
return;

assert(gettimeofday(&tv, NULL) != -1);
ts->tv_sec = tv.tv_sec;
ts->tv_nsec = tv.tv_usec*1000;
}

void add_time_in_ms(struct timespec *ts, int time_in_ms)
{
if (!ts)
return;

uint64_t t_ns = (uint64_t)ts->tv_nsec + 1000000 * (uint64_t)time_in_ms;
while (t_ns >= ONE_BILLION) {
ts->tv_sec += 1;
t_ns -= ONE_BILLION;
}
ts->tv_nsec = (long int)t_ns;
}

+ 0
- 27
src/libespeak-ng/wave.c View File

@@ -46,8 +46,6 @@ struct timespec {
};
#endif

enum { ONE_BILLION = 1000000000 };

#ifdef USE_PORTAUDIO
#include "portaudio.h"

@@ -905,28 +903,3 @@ int wave_get_remaining_time(uint32_t sample, uint32_t *time)
}

#endif

void clock_gettime2(struct timespec *ts)
{
struct timeval tv;

if (!ts)
return;

assert(gettimeofday(&tv, NULL) != -1);
ts->tv_sec = tv.tv_sec;
ts->tv_nsec = tv.tv_usec*1000;
}

void add_time_in_ms(struct timespec *ts, int time_in_ms)
{
if (!ts)
return;

uint64_t t_ns = (uint64_t)ts->tv_nsec + 1000000 * (uint64_t)time_in_ms;
while (t_ns >= ONE_BILLION) {
ts->tv_sec += 1;
t_ns -= ONE_BILLION;
}
ts->tv_nsec = (long int)t_ns;
}

+ 0
- 31
src/libespeak-ng/wave_pulse.c View File

@@ -44,8 +44,6 @@
#endif
#include "wave.h"

enum { ONE_BILLION = 1000000000 };

enum {
/* return value */
PULSE_OK = 0,
@@ -669,32 +667,3 @@ void *wave_test_get_write_buffer()
}

#endif

#ifndef USE_PORTAUDIO

void clock_gettime2(struct timespec *ts)
{
struct timeval tv;

if (!ts)
return;

assert(gettimeofday(&tv, NULL) != -1);
ts->tv_sec = tv.tv_sec;
ts->tv_nsec = tv.tv_usec*1000;
}

void add_time_in_ms(struct timespec *ts, int time_in_ms)
{
if (!ts)
return;

uint64_t t_ns = (uint64_t)ts->tv_nsec + 1000000 * (uint64_t)time_in_ms;
while (t_ns >= ONE_BILLION) {
ts->tv_sec += 1;
t_ns -= ONE_BILLION;
}
ts->tv_nsec = (long int)t_ns;
}

#endif

+ 0
- 26
src/libespeak-ng/wave_sada.c View File

@@ -32,7 +32,6 @@

#include "wave.h"

enum { ONE_BILLION = 1000000000 };
#define SAMPLE_RATE 22050
#define SAMPLE_SIZE 16

@@ -422,28 +421,3 @@ int wave_get_remaining_time(uint32_t sample, uint32_t *time)
}

#endif

void clock_gettime2(struct timespec *ts)
{
struct timeval tv;

if (!ts)
return;

assert(gettimeofday(&tv, NULL) != -1);
ts->tv_sec = tv.tv_sec;
ts->tv_nsec = tv.tv_usec*1000;
}

void add_time_in_ms(struct timespec *ts, int time_in_ms)
{
if (!ts)
return;

uint64_t t_ns = (uint64_t)ts->tv_nsec + 1000000 * (uint64_t)time_in_ms;
while (t_ns >= ONE_BILLION) {
ts->tv_sec += 1;
t_ns -= ONE_BILLION;
}
ts->tv_nsec = (long int)t_ns;
}

Loading…
Cancel
Save