Changeset 2681:359a85bcf5e9 in roaraudio for roard/driver.c


Ignore:
Timestamp:
09/13/09 00:43:35 (15 years ago)
Author:
phi
Branch:
default
Phase:
public
Message:

added new subsystem complex

File:
1 edited

Legend:

Unmodified
Added
Removed
  • roard/driver.c

    r2508 r2681  
    3333#endif 
    3434 { "roar", "RoarAudio driver", "localhost, remote.host.dom", DRV_FLAG_NONE, 
    35    ROAR_SUBSYS_WAVEFORM|ROAR_SUBSYS_MIDI|ROAR_SUBSYS_LIGHT, 
     35   ROAR_SUBSYS_WAVEFORM|ROAR_SUBSYS_MIDI|ROAR_SUBSYS_LIGHT|ROAR_SUBSYS_COMPLEX, 
    3636   NULL, driver_roar_close, driver_roar_open_vio}, 
    3737#ifdef ROAR_HAVE_IO_POSIX 
    3838 { "raw",  "RAW PCM driver", "/some/file", DRV_FLAG_FHSEC, 
    39    ROAR_SUBSYS_WAVEFORM|ROAR_SUBSYS_MIDI|ROAR_SUBSYS_LIGHT|ROAR_SUBSYS_RAW, 
     39   ROAR_SUBSYS_WAVEFORM|ROAR_SUBSYS_MIDI|ROAR_SUBSYS_LIGHT|ROAR_SUBSYS_RAW|ROAR_SUBSYS_COMPLEX, 
    4040   NULL, NULL, driver_raw_open_vio}, 
    4141#endif 
     
    9898  if ( g_driver[i].subsystems & ROAR_SUBSYS_RAW ) 
    9999   subsys[4] = 'R'; 
     100  if ( g_driver[i].subsystems & ROAR_SUBSYS_COMPLEX ) 
     101   subsys[5] = 'X'; 
    100102 
    101103  printf("  %-9s %c%c%c %6s - %s (devices: %s)\n", g_driver[i].name, 
Note: See TracChangeset for help on using the changeset viewer.