Changeset 4815:df2ef6edb97f in roaraudio for roard/roard.c


Ignore:
Timestamp:
03/27/11 20:04:27 (13 years ago)
Author:
phi
Branch:
default
Phase:
public
Message:

added support to roard for record streams.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • roard/roard.c

    r4811 r4815  
    940940  } else if ( !strcmp(k, "passmixer") ) { 
    941941   flag = ROAR_FLAG_PASSMIXER; 
     942  } else if ( !strcmp(k, "recsource") ) { 
     943   flag = ROAR_FLAG_RECSOURCE; 
    942944  } else { 
    943945   return -1; 
     
    11581160  } else if ( strcmp(k, "passmixer") == 0 ) { 
    11591161   streams_set_flag(stream, ROAR_FLAG_PASSMIXER); 
     1162  } else if ( strcmp(k, "recsource") == 0 ) { 
     1163   streams_set_flag(stream, ROAR_FLAG_RECSOURCE); 
    11601164  } else { 
    11611165   ROAR_ERR("add_output(*): unknown option '%s'", k); 
Note: See TracChangeset for help on using the changeset viewer.