mirror of
https://github.com/game-stop/veejay.git
synced 2025-12-14 03:39:58 +01:00
refactored camera controls, refactored stream panel, added alpha blend to (manual) chain fader added generator parameters, changed VIMS_CHAIN_MANUAL_FADE, add fade_method property to stream and sample optimize masktransition using (auto) vectorization added vims VIMS_GET_STREAM_ARGS added vims VIMS_STREAM_SET_V4LCTRL added vims VIMS_STREAM_SET_ARGS refactored chain fader updated sendVIMS for pd update sayVIMS fix #47 update #31
24 lines
613 B
C
24 lines
613 B
C
#ifndef FREIORLOADER_H
|
|
#define FREIORLOADER_H
|
|
|
|
void* deal_with_fr( void *handle, char *name );
|
|
|
|
void frei0r_destroy();
|
|
|
|
void* frei0r_plug_init( void *plugin , int w, int h,int pf );
|
|
|
|
void frei0r_plug_deinit( void *plugin );
|
|
|
|
void frei0r_plug_free( void *plugin );
|
|
|
|
int frei0r_plug_process( void *plugin, void *in, void *out );
|
|
|
|
void frei0r_plug_process_ext( void *plugin, void *in1, void *in2, void *out);
|
|
|
|
void frei0r_plug_param_f( void *port, int num_args, int *dargs );
|
|
|
|
int frei0r_get_params_f( void *port, int *args );
|
|
int frei0r_get_param_count( void *port);
|
|
int init_frei0r(int w, int h, int pf);
|
|
#endif
|