Changeset 3548:f45c9bcfcf20 in roaraudio for include/libroardsp


Ignore:
Timestamp:
02/20/10 02:38:05 (14 years ago)
Author:
phi
Branch:
default
Phase:
public
Message:

wrote channel mapper functions for PCM

File:
1 edited

Legend:

Unmodified
Added
Removed
  • include/libroardsp/channels.h

    r3543 r3548  
    140140int roardsp_chanmap_calc(struct roardsp_chanmap * map, int what, int err_on_none); 
    141141 
     142int roardsp_chanmap_mappcm8 (char    * out, char    * in, size_t len, size_t chans, char * map); 
     143int roardsp_chanmap_mappcm16(int16_t * out, int16_t * in, size_t len, size_t chans, char * map); 
     144int roardsp_chanmap_mappcm24(void    * out, void    * in, size_t len, size_t chans, char * map); 
     145int roardsp_chanmap_mappcm32(int32_t * out, int32_t * in, size_t len, size_t chans, char * map); 
     146int roardsp_chanmap_mappcm  (void    * out, void    * in, size_t len, size_t chans, char * map, int bits); 
     147 
    142148#endif 
    143149 
Note: See TracChangeset for help on using the changeset viewer.