mirror of
https://github.com/game-stop/veejay.git
synced 2025-12-19 06:10:01 +01:00
25 lines
568 B
C
25 lines
568 B
C
#ifndef FREEFRAME_LOADER
|
|
#define FREEFRAME_LOADER
|
|
void* deal_with_ff( void *handle, char *name );
|
|
|
|
|
|
int freeframe_plug_process( void *plugin, double timecode );
|
|
|
|
|
|
void freeframe_push_channel( void *instance, const char *key,int n, VJFrame *frame );
|
|
|
|
|
|
void freeframe_plug_free( void *plugin );
|
|
|
|
void freeframe_plug_deinit( void *plugin );
|
|
|
|
|
|
int freeframe_plug_init( void *plugin, int w, int h );
|
|
|
|
void freeframe_plug_retrieve_current_values( void *instance, void *fx_values );
|
|
|
|
void freeframe_plug_retrieve_default_values( void *instance, void *fx_values );
|
|
|
|
|
|
#endif
|