configure.ac: Add checks for Flex/Yacc/Bison and other furry animals, for the new...
[platform/upstream/gst-plugins-good.git] / gst / goom / goom.h
1 #ifndef _GOOMCORE_H
2 #define _GOOMCORE_H
3
4 #include "goom_config.h"
5 #include "goom_plugin_info.h"
6 #include "goomsl.h"
7
8 #define NB_FX 10
9
10 PluginInfo *goom_init (guint32 resx, guint32 resy);
11 void goom_set_resolution (PluginInfo *goomInfo, guint32 resx, guint32 resy);
12
13 /*
14  * forceMode == 0 : do nothing
15  * forceMode == -1 : lock the FX
16  * forceMode == 1..NB_FX : force a switch to FX n# forceMode
17  *
18  * songTitle = pointer to the title of the song...
19  *      - NULL if it is not the start of the song
20  *      - only have a value at the start of the song
21  */
22 guint32 *goom_update (PluginInfo *goomInfo, gint16 data[2][512], int forceMode, float fps,
23                       char *songTitle, char *message);
24
25 /* returns 0 if the buffer wasn't accepted */
26 int goom_set_screenbuffer(PluginInfo *goomInfo, void *buffer);
27
28 void goom_close (PluginInfo *goomInfo);
29
30 #endif