summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSebastian Dröge <sebastian@centricular.com>2018-10-03 23:17:56 +0300
committerSebastian Dröge <sebastian@centricular.com>2018-10-03 23:17:56 +0300
commit2b0298d847348af4699cc44a4d5c82ad519a932a (patch)
tree080c240a354b89510760132d846b3e2a0c6716d9
parentc5b78fdc9326bce723f4d56edade1cfff8c61fb5 (diff)
downloadgst-plugins-base-2b0298d847348af4699cc44a4d5c82ad519a932a.tar.gz
gst-plugins-base-2b0298d847348af4699cc44a4d5c82ad519a932a.tar.xz
glviewconvert: Create an anonymous enum for GstGLStereoDownmix
Older glib-mkenums completely fails to parse it otherwise.
-rw-r--r--gst-libs/gst/gl/gstglviewconvert.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/gst-libs/gst/gl/gstglviewconvert.h b/gst-libs/gst/gl/gstglviewconvert.h
index de14bb4bd..71a7ef908 100644
--- a/gst-libs/gst/gl/gstglviewconvert.h
+++ b/gst-libs/gst/gl/gstglviewconvert.h
@@ -43,7 +43,7 @@ G_BEGIN_DECLS
*
* Output anaglyph type to generate when downmixing to mono
*/
-typedef enum _GstGLStereoDownmix {
+typedef enum {
GST_GL_STEREO_DOWNMIX_ANAGLYPH_GREEN_MAGENTA_DUBOIS,
GST_GL_STEREO_DOWNMIX_ANAGLYPH_RED_CYAN_DUBOIS,
GST_GL_STEREO_DOWNMIX_ANAGLYPH_AMBER_BLUE_DUBOIS,