Changeset 2154:1f9fc07cd3fe in roaraudio


Ignore:
Timestamp:
07/24/09 21:20:53 (15 years ago)
Author:
phi
Branch:
default
Phase:
public
Message:

added support for the antiecho flag

File:
1 edited

Legend:

Unmodified
Added
Removed
  • roarclients/roarctl.c

    r1926 r2154  
    318318    if ( info.flags & ROAR_FLAG_MMAP ) 
    319319     strcat(flags, "mmap "); 
     320    if ( info.flags & ROAR_FLAG_ANTIECHO ) 
     321     strcat(flags, "antiecho "); 
    320322 
    321323    printf("Flags                 : %s\n", flags); 
     
    655657  } else if ( !strcmp(c, "mmap") ) { 
    656658   f |= ROAR_FLAG_MMAP; 
     659  } else if ( !strcmp(c, "antiecho") ) { 
     660   f |= ROAR_FLAG_ANTIECHO; 
    657661  } else { 
    658662   fprintf(stderr, "Error: unknown flag: %s\n", c); 
Note: See TracChangeset for help on using the changeset viewer.