Changeset 5982:c38f275b38ae in roaraudio for include


Ignore:
Timestamp:
02/23/14 15:46:19 (10 years ago)
Author:
phi
Branch:
default
Phase:
public
Message:

Added support to load light control filters into roard.

Location:
include
Files:
1 added
2 edited

Legend:

Unmodified
Added
Removed
  • include/libroar/roardl.h

    r5961 r5982  
    6060#define ROAR_DL_FN_DRIVER               3 /* Driver, roard? */ 
    6161#define ROAR_DL_FN_SOURCE               4 /* Sources, roard? */ 
    62 #define ROAR_DL_FN_FILTER               5 /* Filter, libroardsp */ 
     62#define ROAR_DL_FN_FILTER               5 /* Filter, libroardsp, libroarlight */ 
    6363#define ROAR_DL_FN_FF                   6 /* file format??? */ 
    6464#define ROAR_DL_FN_AUTH                 7 /* Auth */ 
     
    357357 
    358358 
     359// Filter Infrastructure (FN_FILTER): 
     360// Parameters for FNREG registration:  
     361#define ROAR_DL_FILTER_SUBTYPE_DSP   0 /* libroardsp */ 
     362#define ROAR_DL_FILTER_SUBTYPE_SLFI  1 /* libroarlight */ 
     363// ROAR_DL_FILTER_{VERSION,SIZE}_* are defined in corresponding headers. 
     364 
     365 
    359366// Common protocol interface (CPI): 
    360367struct roar_dl_proto { 
     
    467474int                      roar_dl_unregister_fn(struct roar_dl_lhandle * lhandle); 
    468475 
     476// asking for a object: 
     477int                      roar_dl_query_fn(struct roar_dl_lhandle ** lhandle, int fn, int subtype, const void ** object, size_t * objectlen, int version, int * options, ssize_t index); 
     478 
    469479#endif 
    470480 
  • include/libroarlight/libroarlight.h

    r5961 r5982  
    4444#include "pwm.h" 
    4545#include "laser.h" 
     46#include "slfi.h" 
    4647 
    4748#endif 
Note: See TracChangeset for help on using the changeset viewer.