summaryrefslogtreecommitdiff
path: root/plugins/dummy
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/dummy')
-rw-r--r--plugins/dummy/Makefile21
-rw-r--r--plugins/dummy/xlnx-dummy.c42
2 files changed, 63 insertions, 0 deletions
diff --git a/plugins/dummy/Makefile b/plugins/dummy/Makefile
new file mode 100644
index 0000000..0fb053b
--- /dev/null
+++ b/plugins/dummy/Makefile
@@ -0,0 +1,21 @@
+AR := $(CROSS_COMPILE)ar
+CC := $(CROSS_COMPILE)gcc
+CFLAGS := -O2 -W -Wall -Wno-unused-parameter -I$(KDIR)/usr/include -I$(topdir)/include -I. -fPIC
+LDFLAGS :=
+
+OBJECTS := xlnx-dummy.o
+TARGET := xlnx-dummy.so
+
+%.o : %.c
+ $(CC) $(CFLAGS) -c -o $@ $<
+
+all: $(TARGET)
+
+$(TARGET): $(OBJECTS)
+ $(CC) -o $@ -shared $^
+
+clean:
+ -$(RM) *.o
+ -$(RM) $(TARGET)
+
+install:
diff --git a/plugins/dummy/xlnx-dummy.c b/plugins/dummy/xlnx-dummy.c
new file mode 100644
index 0000000..a43fc25
--- /dev/null
+++ b/plugins/dummy/xlnx-dummy.c
@@ -0,0 +1,42 @@
+/*
+ * Xilinx Video Library - Dummy plugin that supports no device
+ *
+ * Copyright (C) 2016 Ideas on board Oy
+ *
+ * Contact: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
+ *
+ * This library is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as published by
+ * the Free Software Foundation; either version 2.1 of the License, or (at
+ * your option) any later version.
+ *
+ * This library is distributed in the hope that it will be useful, but WITHOUT
+ * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
+ * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
+ * more details.
+ */
+
+#include <stdlib.h>
+
+#include <xlnx-plugin.h>
+
+static const struct xlnx_video_plugin_info dummy_plugin_info = {
+ .name = "Dummy plugin",
+ .type = XLNX_VIDEO_PLUGIN_TYPE_SOFTWARE,
+};
+
+static const struct xlnx_video_plugin_info *dummy_info(void)
+{
+ return &dummy_plugin_info;
+}
+
+static struct xlnx_video_component *dummy_scan(struct xlnx_video *xv,
+ struct media_device *mdev)
+{
+ return NULL;
+}
+
+EXPORT_XLNX_VIDEO_PLUGIN(dummy) = {
+ .info = dummy_info,
+ .scan = dummy_scan,
+};