mirror of
https://github.com/signalwire/freeswitch.git
synced 2025-08-13 01:26:58 +00:00
Changed spandsp from using TRUE and FALSE to using C99 true and false. It seems
like the quirks we used to get using those with C++ have gone away.
This commit is contained in:
@@ -80,18 +80,18 @@ int main(int argc, char *argv[])
|
||||
int total_pre_samples;
|
||||
int total_compressed_bytes;
|
||||
int total_post_samples;
|
||||
const char *in_file_name;
|
||||
int variant;
|
||||
int chunk_size;
|
||||
int enc_chunk_size;
|
||||
int log_encoded_data;
|
||||
int opt;
|
||||
bool log_encoded_data;
|
||||
const char *in_file_name;
|
||||
|
||||
variant = IMA_ADPCM_DVI4;
|
||||
in_file_name = IN_FILE_NAME;
|
||||
chunk_size = 160;
|
||||
enc_chunk_size = 0;
|
||||
log_encoded_data = FALSE;
|
||||
log_encoded_data = false;
|
||||
while ((opt = getopt(argc, argv, "ac:i:lv")) != -1)
|
||||
{
|
||||
switch (opt)
|
||||
@@ -107,7 +107,7 @@ int main(int argc, char *argv[])
|
||||
in_file_name = optarg;
|
||||
break;
|
||||
case 'l':
|
||||
log_encoded_data = TRUE;
|
||||
log_encoded_data = true;
|
||||
break;
|
||||
case 'v':
|
||||
variant = IMA_ADPCM_VDVI;
|
||||
|
Reference in New Issue
Block a user