mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2024-11-16 17:11:53 -05:00
- Little more cleanup, still not fully working
git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/trunk@176 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
This commit is contained in:
parent
b6c6d30df4
commit
3a60765801
18
start_jack.c
18
start_jack.c
@ -72,14 +72,14 @@ process (jack_nframes_t nframes, void *arg)
|
|||||||
int i;
|
int i;
|
||||||
|
|
||||||
if (ts == JackTransportRolling) {
|
if (ts == JackTransportRolling) {
|
||||||
|
|
||||||
if (client_state == Init)
|
if (client_state == Init)
|
||||||
client_state = Run;
|
client_state = Run;
|
||||||
printf("ZZZ nframes = %d\n", nframes);
|
|
||||||
in = jack_port_get_buffer (input_port, nframes);
|
in = jack_port_get_buffer (input_port, nframes);
|
||||||
/* First hack */
|
/* First hack */
|
||||||
memcpy (rcv_buf, in, AUDIOBUFSIZE);
|
if (nframes != 0) {
|
||||||
|
memcpy (rcv_buf, in, nframes);
|
||||||
jack_read();
|
jack_read();
|
||||||
|
}
|
||||||
|
|
||||||
#if 0
|
#if 0
|
||||||
out = jack_port_get_buffer (output_port, nframes);
|
out = jack_port_get_buffer (output_port, nframes);
|
||||||
@ -280,20 +280,16 @@ start_threads_(int *ndevin, int *ndevout, short y1[], short y2[],
|
|||||||
iret2 = pthread_create(&thread2, NULL,
|
iret2 = pthread_create(&thread2, NULL,
|
||||||
(void *(*)(void *))decode1_,&iarg2);
|
(void *(*)(void *))decode1_,&iarg2);
|
||||||
/* keep running until the transport stops */
|
/* keep running until the transport stops */
|
||||||
|
#if 0
|
||||||
while (client_state != Exit) {
|
|
||||||
sleep (1);
|
|
||||||
}
|
|
||||||
|
|
||||||
jack_client_close (client);
|
jack_client_close (client);
|
||||||
|
#endif
|
||||||
return(0);
|
return(0);
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* oss_loop
|
* jack_read
|
||||||
*
|
*
|
||||||
* inputs - int pointer NOT USED
|
* inputs - none
|
||||||
* output - none
|
* output - none
|
||||||
* side effects -
|
* side effects -
|
||||||
*/
|
*/
|
||||||
|
Loading…
Reference in New Issue
Block a user