diff options
author | Brian Cameron <brian.cameron@sun.com> | 2003-05-22 11:04:31 +0000 |
---|---|---|
committer | Brian Cameron <brian.cameron@sun.com> | 2003-05-22 11:04:31 +0000 |
commit | 6d19f51c85ea45c0176b80e31429abc80b353641 (patch) | |
tree | 1693658ec9a34dde525cfef75c8d106a73ca7d8a /gst | |
parent | 37d86126ac80f04355db0eb800f1801de83ac933 (diff) | |
download | gst-plugins-bad-6d19f51c85ea45c0176b80e31429abc80b353641.tar.gz gst-plugins-bad-6d19f51c85ea45c0176b80e31429abc80b353641.tar.bz2 gst-plugins-bad-6d19f51c85ea45c0176b80e31429abc80b353641.zip |
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.c | 4 |
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; /* |