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

thread_inited = 0; 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

}; };
#endif #endif


enum { ONE_BILLION = 1000000000 };

#ifdef USE_PORTAUDIO #ifdef USE_PORTAUDIO
#include "portaudio.h" #include "portaudio.h"


} }


#endif #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

#endif #endif
#include "wave.h" #include "wave.h"


enum { ONE_BILLION = 1000000000 };

enum { enum {
/* return value */ /* return value */
PULSE_OK = 0, PULSE_OK = 0,
} }


#endif #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



#include "wave.h" #include "wave.h"


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


} }


#endif #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