Changeset 2145:ad5260b8af44 in roaraudio for include/libroardsp


Ignore:
Timestamp:
07/24/09 14:48:19 (15 years ago)
Author:
phi
Branch:
default
Phase:
public
Message:

updated structs and prototypes, implemented a first 16 bit version

File:
1 edited

Legend:

Unmodified
Added
Removed
  • include/libroardsp/remove.h

    r2143 r2145  
    4040struct roar_remove_state { 
    4141 uint16_t a, b; 
    42  int32_t  old; 
     42 uint16_t  old; 
    4343}; 
    4444 
    4545int roar_remove_init (struct roar_remove_state * state); 
    46 int roar_remove      (void * inout, void * subs, int samples, int bits, struct roar_remove_state * state); 
     46int roar_remove      (void    * inout, void    * subs, int samples, int bits, struct roar_remove_state * state); 
     47int roar_remove_8    (int8_t  * inout, int8_t  * subs, int samples, struct roar_remove_state * state); 
     48int roar_remove_16   (int8_t  * inout, int8_t  * subs, int samples, struct roar_remove_state * state); 
     49int roar_remove_32   (int8_t  * inout, int8_t  * subs, int samples, struct roar_remove_state * state); 
    4750 
    4851#endif 
Note: See TracChangeset for help on using the changeset viewer.