Changeset 5380:0504bc7766aa in roaraudio for libroar


Ignore:
Timestamp:
01/04/12 21:36:22 (12 years ago)
Author:
phi
Branch:
default
Phase:
public
Message:

Added support for stream direction RECPLAY.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • libroar/stream.c

    r5270 r5380  
    807807 
    808808// stream direction funcs: 
    809 /* 
    810 #define roar_dir2str(x)   ((x) == ROAR_DIR_PLAY   ? "play"   : (x) == ROAR_DIR_MONITOR ? "monitor" : \ 
    811                            (x) == ROAR_DIR_FILTER ? "filter" : (x) == ROAR_DIR_RECORD  ? "record"  : \ 
    812                            (x) == ROAR_DIR_OUTPUT ? "output" : (x) == ROAR_DIR_BIDIR   ? "bidir"   : \ 
    813                            (x) == ROAR_DIR_MIXING ? "mixing" : \ 
    814                            "unknown") 
    815 */ 
    816  
    817809static const struct { 
    818  int    dir; 
     810 const int    dir; 
    819811 const char * name; 
    820812} _libroar_dir[] = { 
     
    839831 {ROAR_DIR_RDTCS_IN,    "rdtcs_in"   }, 
    840832 {ROAR_DIR_RDTCS_OUT,   "rdtcs_out"  }, 
     833 {ROAR_DIR_RECPLAY,     "recplay"    }, 
    841834 {-1,                   "unknown"    } 
    842835}; 
Note: See TracChangeset for help on using the changeset viewer.