summaryrefslogtreecommitdiffstats
path: root/sys/v4l2/gstv4l2element.c
diff options
context:
space:
mode:
authorRonald S. Bultje <rbultje@ronald.bitfreak.net>2002-09-20 09:28:46 +0000
committerRonald S. Bultje <rbultje@ronald.bitfreak.net>2002-09-20 09:28:46 +0000
commitab8fe8ba0bf82dbb6388b54ec27a8cc3484367e1 (patch)
tree705d136b6a493c19802af07a389cacaf84d9cdec /sys/v4l2/gstv4l2element.c
parent91b9c6c9c66c9a2df62595224d7d1fc9e39db414 (diff)
downloadgst-plugins-bad-ab8fe8ba0bf82dbb6388b54ec27a8cc3484367e1.tar.gz
gst-plugins-bad-ab8fe8ba0bf82dbb6388b54ec27a8cc3484367e1.tar.bz2
gst-plugins-bad-ab8fe8ba0bf82dbb6388b54ec27a8cc3484367e1.zip
This patch fixes some issues caused by design issues in video4linux, adds some nicety to video4linux2 plugins and doe...
Original commit message from CVS: This patch fixes some issues caused by design issues in video4linux, adds some nicety to video4linux2 plugins and does some more evil stuff: * video4linux doesn't tell us which formats are supported by a card, so the only way to know this is by simply trying it out. This patch adds that. * v4lmjpegsink didnt have a bufferpool yet - is integrated now. * all copy() bufferpool functions have been removed since they're not needed. * v4lmjpegsink doesnt have a free() function, because hen playing the frames, all this is already handled. When the frame is not played, nothing has to be done. In total, the function is not needed. * adds a get_caps() function to v4l2src * some minor crap
Diffstat (limited to 'sys/v4l2/gstv4l2element.c')
-rw-r--r--sys/v4l2/gstv4l2element.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/v4l2/gstv4l2element.c b/sys/v4l2/gstv4l2element.c
index 2ab68a38..01f0fa1c 100644
--- a/sys/v4l2/gstv4l2element.c
+++ b/sys/v4l2/gstv4l2element.c
@@ -23,10 +23,11 @@
#include "v4l2_calls.h"
-
+/* elementfactory details */
static GstElementDetails gst_v4l2element_details = {
"Generic video4linux2 Element",
"None/Video",
+ "LGPL",
"Generic plugin for handling common video4linux2 calls",
VERSION,
"Ronald Bultje <rbultje@ronald.bitfreak.net>",