mirror of
https://github.com/game-stop/veejay.git
synced 2025-12-14 03:39:58 +01:00
26 lines
597 B
C
26 lines
597 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 );
|
|
|
|
|
|
void *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 );
|
|
|
|
void freeframe_destroy( );
|
|
|
|
#endif
|