summaryrefslogtreecommitdiffstats
path: root/gst
diff options
context:
space:
mode:
authorBrian Cameron <brian.cameron@sun.com>2003-05-22 11:04:31 +0000
committerBrian Cameron <brian.cameron@sun.com>2003-05-22 11:04:31 +0000
commit1bc371768a3be3b26f2b73cced7357114a2a7439 (patch)
tree33ec9f380d9b9a2be9a7d696a19fbf91cbad90d2 /gst
parent1505cd8773944d1d0598bff9daca075c90ae5dfc (diff)
Removed needless ; at the end of GST_PAD_TEMPLATE_FACTORY calls, which were causing non-gcc compilers to break.
Original commit message from CVS: Removed needless ; at the end of GST_PAD_TEMPLATE_FACTORY calls, which were causing non-gcc compilers to break.
Diffstat (limited to 'gst')
-rw-r--r--gst/qtdemux/qtdemux.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gst/qtdemux/qtdemux.c b/gst/qtdemux/qtdemux.c
index 6faa6591..4512f757 100644
--- a/gst/qtdemux/qtdemux.c
+++ b/gst/qtdemux/qtdemux.c
@@ -62,7 +62,7 @@ GST_PAD_TEMPLATE_FACTORY (sink_templ,
"video/quicktime",
NULL
)
-);
+)
/*
* so far i only support Photo Jpeg videos and no audio.
@@ -78,7 +78,7 @@ GST_PAD_TEMPLATE_FACTORY (src_video_templ,
"width", GST_PROPS_INT_RANGE (16, 4096),
"height", GST_PROPS_INT_RANGE (16, 4096)
)
-);
+)
static GstElementClass *parent_class = NULL;
/*