mirror of
https://github.com/overte-org/overte.git
synced 2025-04-20 11:45:36 +02:00
undo changes to interface constants
This commit is contained in:
parent
09dee91279
commit
28beb3ecfc
2 changed files with 4 additions and 4 deletions
|
@ -38,10 +38,10 @@ const short JITTER_BUFFER_SAMPLES = JITTER_BUFFER_LENGTH_MSECS * (SAMPLE_RATE /
|
|||
const short NUM_AUDIO_SOURCES = 2;
|
||||
const short ECHO_SERVER_TEST = 1;
|
||||
|
||||
char WORKCLUB_AUDIO_SERVER[] = "0.0.0.0";
|
||||
char WORKCLUB_AUDIO_SERVER[] = "192.168.1.19";
|
||||
char EC2_WEST_AUDIO_SERVER[] = "54.241.92.53";
|
||||
|
||||
const int AUDIO_UDP_LISTEN_PORT = 55446;
|
||||
const int AUDIO_UDP_LISTEN_PORT = 55444;
|
||||
|
||||
int starve_counter = 0;
|
||||
|
||||
|
@ -88,7 +88,7 @@ int audioCallback (const void *inputBuffer,
|
|||
// int16_t *inputRight = ((int16_t **) inputBuffer)[1];
|
||||
|
||||
if (inputLeft != NULL) {
|
||||
data->audioSocket->send((char *) WORKCLUB_AUDIO_SERVER, 55443, (void *)inputLeft, BUFFER_LENGTH_BYTES);
|
||||
data->audioSocket->send((char *) EC2_WEST_AUDIO_SERVER, 55443, (void *)inputLeft, BUFFER_LENGTH_BYTES);
|
||||
//
|
||||
// Measure the loudness of the signal from the microphone and store in audio object
|
||||
//
|
||||
|
|
|
@ -158,7 +158,7 @@ int speed;
|
|||
//
|
||||
|
||||
SerialInterface serialPort;
|
||||
char serial_portname[] = "/dev/tty.usbmodemfd131";
|
||||
char serial_portname[] = "/dev/tty.usbmodem411";
|
||||
|
||||
int serial_on = 0;
|
||||
int latency_display = 1;
|
||||
|
|
Loading…
Reference in a new issue