mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-10 03:19:40 +00:00
8f93753160
Original commit message from CVS: Initial rough version of new synaesthesia plugin. Works like goom: reads audio in, and outputs raw video. It currently works for a short time, and then freezes: I've no idea why. But at least it works a little. ;-)
10 lines
207 B
C
10 lines
207 B
C
#ifndef _SYNAESCOPE_H
|
|
#define _SYNAESCOPE_H
|
|
|
|
#include <glib.h>
|
|
|
|
void synaesthesia_init (guint32 resx, guint32 resy);
|
|
guint32 * synaesthesia_update (gint16 data [2][512]);
|
|
void synaesthesia_close ();
|
|
|
|
#endif
|