Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/GStreamer/gst-plugins-good.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorTim-Philipp Müller <tim@centricular.com>2020-07-09 20:37:01 +0300
committerTim-Philipp Müller <tim@centricular.com>2020-07-10 19:37:28 +0300
commitb222ca1fc9a9b47195c7bce3057d0e7af56ae4f8 (patch)
tree06a81e74059c93ebb606cf427476eaae33747202 /sys
parent8ceaefe101a1c24f0f2634875901a1cd52ac05d1 (diff)
rpicamsrc: remove mkenums template files which are no longer needed
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>
Diffstat (limited to 'sys')
-rw-r--r--sys/rpicamsrc/gstrpicam-enums-template.c40
-rw-r--r--sys/rpicamsrc/gstrpicam-enums-template.h24
2 files changed, 0 insertions, 64 deletions
diff --git a/sys/rpicamsrc/gstrpicam-enums-template.c b/sys/rpicamsrc/gstrpicam-enums-template.c
deleted file mode 100644
index 8631751a5..000000000
--- a/sys/rpicamsrc/gstrpicam-enums-template.c
+++ /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
index eb25042ba..000000000
--- a/sys/rpicamsrc/gstrpicam-enums-template.h
+++ /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 ***/