mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-08 18:39:54 +00:00
4d3b1472e7
Original commit message from CVS: Added a goom plugin (goom.sourceforge.net) to test: ./gst-launch filesrc location=/opt/data/south.mp3 ! mad ! tee silent=true src%d! goom ! colorspace ! xvideosink tee0.src%d! osssink
13 lines
236 B
C
13 lines
236 B
C
#ifndef _GOOMCORE_H
|
|
#define _GOOMCORE_H
|
|
|
|
#include <glib.h>
|
|
|
|
void goom_init (guint32 resx, guint32 resy);
|
|
void goom_set_resolution (guint32 resx, guint32 resy);
|
|
|
|
guint32 * goom_update (gint16 data [2][512]);
|
|
|
|
void goom_close ();
|
|
|
|
#endif
|