Changeset 3542:4a10d68e4c70 in roaraudio for roard/include


Ignore:
Timestamp:
02/20/10 01:28:43 (14 years ago)
Author:
phi
Branch:
default
Phase:
public
Message:

support to set channel map

File:
1 edited

Legend:

Unmodified
Added
Removed
  • roard/include/streams.h

    r3517 r3542  
    5252#define ROAR_STREAM_CTL_TYPE_FLOAT  0x00020000 
    5353#define ROAR_STREAM_CTL_TYPE_FPI100 0x00030000 /* fix point integter int/100 */ 
     54 
     55#define STREAM_DIR_NONE             0x00 
     56#define STREAM_DIR_IN               0x01 
     57#define STREAM_DIR_OUT              0x02 
     58#define STREAM_DIR_BIDIR            (STREAM_DIR_IN|STREAM_DIR_OUT) 
    5459 
    5560struct roar_stream_server { 
     
    107112 
    108113int streams_get_subsys (int id); 
     114int streams_get_ssdir  (int id); 
    109115 
    110116int streams_new_virtual (int parent, struct roar_stream_server ** stream); 
     
    132138int streams_calc_delay   (int id); 
    133139int streams_set_mixer    (int id); 
     140 
     141int streams_set_map      (int id, char * map, size_t len); 
    134142 
    135143int streams_ctl          (int id, int_least32_t cmd, void * data); 
Note: See TracChangeset for help on using the changeset viewer.