renamed decoderInit() to decoder_thread_start()
This commit is contained in:
parent
56cdce6946
commit
a2b24462e8
@ -187,7 +187,7 @@ static void * decoder_task(mpd_unused void *arg)
|
|||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
void decoderInit(void)
|
void decoder_thread_start(void)
|
||||||
{
|
{
|
||||||
pthread_attr_t attr;
|
pthread_attr_t attr;
|
||||||
pthread_t decoder_thread;
|
pthread_t decoder_thread;
|
||||||
|
@ -20,6 +20,6 @@
|
|||||||
#ifndef DECODER_THREAD_H
|
#ifndef DECODER_THREAD_H
|
||||||
#define DECODER_THREAD_H
|
#define DECODER_THREAD_H
|
||||||
|
|
||||||
void decoderInit(void);
|
void decoder_thread_start(void);
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
@ -433,7 +433,7 @@ int main(int argc, char *argv[])
|
|||||||
initZeroconf();
|
initZeroconf();
|
||||||
|
|
||||||
openVolumeDevice();
|
openVolumeDevice();
|
||||||
decoderInit();
|
decoder_thread_start();
|
||||||
player_create();
|
player_create();
|
||||||
read_state_file();
|
read_state_file();
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user