rpicamsrc: remove mkenums template files which are no longer needed
authorTim-Philipp Müller <tim@centricular.com>
Thu, 9 Jul 2020 17:37:01 +0000 (17:37 +0000)
committerTim-Philipp Müller <tim@centricular.com>
Fri, 10 Jul 2020 16:37:28 +0000 (17:37 +0100)
They were still being used by the autotools build, but that's gone.

Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-good/-/merge_requests/667>

sys/rpicamsrc/gstrpicam-enums-template.c [deleted file]
sys/rpicamsrc/gstrpicam-enums-template.h [deleted file]

diff --git a/sys/rpicamsrc/gstrpicam-enums-template.c b/sys/rpicamsrc/gstrpicam-enums-template.c
deleted file mode 100644 (file)
index 8631751..0000000
+++ /dev/null
@@ -1,40 +0,0 @@
-/*** BEGIN file-header ***/
-#include "gstrpicam-enum-types.h"
-
-/*** END file-header ***/
-
-/*** BEGIN file-production ***/
-/* enumerations from "@basename@" */
-#include "@filename@"
-
-#define C_ENUM(v) ((gint) v)
-#define C_FLAGS(v) ((guint) v)
-
-/*** END file-production ***/
-
-/*** BEGIN value-header ***/
-GType
-@enum_name@_get_type (void)
-{
-  static volatile gsize gtype_id = 0;
-
-  if (g_once_init_enter (&gtype_id)) {
-    static const G@Type@Value values[] = {
-/*** END value-header ***/
-
-/*** BEGIN value-production ***/
-        { C_@TYPE@(@VALUENAME@), "@VALUENAME@", "@valuenick@" },
-/*** END value-production ***/
-
-/*** BEGIN value-tail ***/
-        { 0, NULL, NULL }
-    };
-
-    GType new_type = g_@type@_register_static (g_intern_static_string ("@EnumName@"), values);
-    g_once_init_leave (&gtype_id, new_type);
-  }
-  return (GType) gtype_id;
-}
-
-/*** END value-tail ***/
-
diff --git a/sys/rpicamsrc/gstrpicam-enums-template.h b/sys/rpicamsrc/gstrpicam-enums-template.h
deleted file mode 100644 (file)
index eb25042..0000000
+++ /dev/null
@@ -1,24 +0,0 @@
-/*** BEGIN file-header ***/
-#pragma once
-
-#include <glib-object.h>
-
-G_BEGIN_DECLS
-
-/*** END file-header ***/
-
-/*** BEGIN file-production ***/
-/* Enumerations from "@basename@" */
-
-/*** END file-production ***/
-
-/*** BEGIN enumeration-production ***/
-#define @ENUMPREFIX@_TYPE_@ENUMSHORT@ (@enum_name@_get_type())
-GType @enum_name@_get_type (void);
-
-/*** END enumeration-production ***/
-
-/*** BEGIN file-tail ***/
-G_END_DECLS
-
-/*** END file-tail ***/