summaryrefslogtreecommitdiffstats
path: root/sys/v4l2/gstv4l2src.h
diff options
context:
space:
mode:
authorWim Taymans <wim.taymans@gmail.com>2006-09-26 13:18:06 +0000
committerWim Taymans <wim.taymans@gmail.com>2006-09-26 13:18:06 +0000
commit65c2296d10a5a9b4566d1d506702a8c8ac8b79bb (patch)
tree6bd101afd4764a50ba560df718288ba9ffe1699d /sys/v4l2/gstv4l2src.h
parentb90e11a094296aaae07ff496b8b7631d4c96134a (diff)
downloadgst-plugins-bad-65c2296d10a5a9b4566d1d506702a8c8ac8b79bb.tar.gz
gst-plugins-bad-65c2296d10a5a9b4566d1d506702a8c8ac8b79bb.tar.bz2
gst-plugins-bad-65c2296d10a5a9b4566d1d506702a8c8ac8b79bb.zip
sys/v4l2/Makefile.am: Fix makefile, list libs in stack order.
Original commit message from CVS: * sys/v4l2/Makefile.am: Fix makefile, list libs in stack order. * sys/v4l2/gstv4l2colorbalance.c: * sys/v4l2/gstv4l2colorbalance.h: * sys/v4l2/gstv4l2object.c: (gst_v4l2_device_get_type), (gst_v4l2_object_install_properties_helper): * sys/v4l2/gstv4l2object.h: * sys/v4l2/gstv4l2src.c: (gst_v4l2src_get_read), (gst_v4l2src_get_mmap), (gst_v4l2src_create): * sys/v4l2/gstv4l2src.h: * sys/v4l2/gstv4l2tuner.h: * sys/v4l2/gstv4l2vidorient.h: * sys/v4l2/gstv4l2xoverlay.h: * sys/v4l2/v4l2_calls.h: * sys/v4l2/v4l2src_calls.h: Fix coding style: - Remove extern from functions. - Fix header indentation. Fix Flags, add defaults for properties. Remove unused enums. Fix TOO_LAZY in error messages.
Diffstat (limited to 'sys/v4l2/gstv4l2src.h')
-rw-r--r--sys/v4l2/gstv4l2src.h13
1 files changed, 1 insertions, 12 deletions
diff --git a/sys/v4l2/gstv4l2src.h b/sys/v4l2/gstv4l2src.h
index a8edda76..21b290de 100644
--- a/sys/v4l2/gstv4l2src.h
+++ b/sys/v4l2/gstv4l2src.h
@@ -24,7 +24,6 @@
#ifndef __GST_V4L2SRC_H__
#define __GST_V4L2SRC_H__
-
#include <gstv4l2object.h>
GST_DEBUG_CATEGORY_EXTERN (v4l2src_debug);
@@ -69,15 +68,6 @@ struct _GstV4l2Buffer
GstV4l2BufferPool *pool;
};
-enum
-{
- QUEUE_STATE_ERROR = -1,
- QUEUE_STATE_READY_FOR_QUEUE, /* the frame is ready to be queued for capture */
- QUEUE_STATE_QUEUED, /* the frame is queued for capture */
- QUEUE_STATE_SYNCED /* the frame is captured */
-};
-
-
struct _GstV4l2Src
{
GstPushSrc pushsrc;
@@ -111,11 +101,10 @@ struct _GstV4l2SrcClass
GstPushSrcClass parent_class;
GList *v4l2_class_devices;
-
};
-
GType gst_v4l2src_get_type (void);
G_END_DECLS
+
#endif /* __GST_V4L2SRC_H__ */