mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-18 14:26:43 +00:00
sys/v4l/gstv4lelement.c: Add missing semicolon to fix indentation.
Original commit message from CVS: * sys/v4l/gstv4lelement.c: Add missing semicolon to fix indentation.
This commit is contained in:
parent
f0154849b0
commit
fac95d0eed
2 changed files with 13 additions and 9 deletions
|
@ -1,3 +1,8 @@
|
|||
2008-02-29 Rene Stadler <mail@renestadler.de>
|
||||
|
||||
* sys/v4l/gstv4lelement.c:
|
||||
Add missing semicolon to fix indentation.
|
||||
|
||||
2008-02-29 Julien Moutte <julien@fluendo.com>
|
||||
|
||||
* ext/alsa/gstalsa.c: (gst_alsa_open_iec958_pcm),
|
||||
|
|
|
@ -52,21 +52,20 @@ enum
|
|||
static void gst_v4lelement_init_interfaces (GType type);
|
||||
|
||||
GST_BOILERPLATE_FULL (GstV4lElement, gst_v4lelement, GstPushSrc,
|
||||
GST_TYPE_PUSH_SRC, gst_v4lelement_init_interfaces)
|
||||
GST_TYPE_PUSH_SRC, gst_v4lelement_init_interfaces);
|
||||
|
||||
|
||||
static void gst_v4lelement_dispose (GObject * object);
|
||||
static void gst_v4lelement_set_property (GObject * object,
|
||||
static void gst_v4lelement_dispose (GObject * object);
|
||||
static void gst_v4lelement_set_property (GObject * object,
|
||||
guint prop_id, const GValue * value, GParamSpec * pspec);
|
||||
static void gst_v4lelement_get_property (GObject * object,
|
||||
static void gst_v4lelement_get_property (GObject * object,
|
||||
guint prop_id, GValue * value, GParamSpec * pspec);
|
||||
static gboolean gst_v4lelement_start (GstBaseSrc * src);
|
||||
static gboolean gst_v4lelement_stop (GstBaseSrc * src);
|
||||
static gboolean gst_v4lelement_start (GstBaseSrc * src);
|
||||
static gboolean gst_v4lelement_stop (GstBaseSrc * src);
|
||||
|
||||
|
||||
static gboolean
|
||||
gst_v4l_iface_supported (GstImplementsInterface * iface,
|
||||
GType iface_type)
|
||||
static gboolean
|
||||
gst_v4l_iface_supported (GstImplementsInterface * iface, GType iface_type)
|
||||
{
|
||||
GstV4lElement *v4lelement = GST_V4LELEMENT (iface);
|
||||
|
||||
|
|
Loading…
Reference in a new issue