Changeset 685:b05e3c0058d0 in roaraudio


Ignore:
Timestamp:
08/27/08 17:24:18 (16 years ago)
Author:
phi
Branch:
default
Phase:
public
Message:

added highp inst struct and prototypes

File:
1 edited

Legend:

Unmodified
Added
Removed
  • include/libroardsp/libroardsp.h

    r679 r685  
    4444}; 
    4545 
     46struct roardsp_highp { 
     47 uint32_t freq; // in mHz (0Hz..4MHz) 
     48 int32_t  a, b, c; 
     49 int32_t  oldout[ROAR_MAX_CHANNELS]; 
     50 int32_t  oldin[ROAR_MAX_CHANNELS]; 
     51}; 
     52 
    4653// funcs: 
    4754int    roardsp_filter_str2id(char * str); 
     
    6572int roardsp_lowp_ctl   (struct roardsp_filter * filter, int cmd, void * data); 
    6673 
     74int roardsp_highp_init  (struct roardsp_filter * filter, struct roar_stream * stream, int id); 
     75int roardsp_highp_uninit(struct roardsp_filter * filter); 
     76int roardsp_highp_calc16(struct roardsp_filter * filter, void * data, size_t samples); 
     77int roardsp_highp_ctl   (struct roardsp_filter * filter, int cmd, void * data); 
    6778 
    6879#endif 
Note: See TracChangeset for help on using the changeset viewer.