rename 'Timer' to 'struct timer'
This commit is contained in:
committed by
Max Kellermann
parent
4428894aba
commit
310895f060
@@ -42,7 +42,7 @@ struct fifo_data {
|
||||
int input;
|
||||
int output;
|
||||
bool created;
|
||||
Timer *timer;
|
||||
struct timer *timer;
|
||||
};
|
||||
|
||||
/**
|
||||
|
||||
@@ -65,10 +65,10 @@ struct httpd_output {
|
||||
GMutex *mutex;
|
||||
|
||||
/**
|
||||
* A #Timer object to synchronize this output with the
|
||||
* A #timer object to synchronize this output with the
|
||||
* wallclock.
|
||||
*/
|
||||
Timer *timer;
|
||||
struct timer *timer;
|
||||
|
||||
/**
|
||||
* The listener socket.
|
||||
|
||||
@@ -28,7 +28,7 @@
|
||||
struct null_data {
|
||||
bool sync;
|
||||
|
||||
Timer *timer;
|
||||
struct timer *timer;
|
||||
};
|
||||
|
||||
static void *
|
||||
@@ -82,7 +82,7 @@ null_play(void *data, G_GNUC_UNUSED const void *chunk, size_t size,
|
||||
G_GNUC_UNUSED GError **error)
|
||||
{
|
||||
struct null_data *nd = data;
|
||||
Timer *timer = nd->timer;
|
||||
struct timer *timer = nd->timer;
|
||||
|
||||
if (!nd->sync)
|
||||
return size;
|
||||
|
||||
@@ -41,7 +41,7 @@ struct openal_data {
|
||||
const char *device_name;
|
||||
ALCdevice *device;
|
||||
ALCcontext *context;
|
||||
Timer *timer;
|
||||
struct timer *timer;
|
||||
ALuint buffers[NUM_BUFFERS];
|
||||
int filled;
|
||||
ALuint source;
|
||||
|
||||
Reference in New Issue
Block a user