projects
/
platform
/
upstream
/
gstreamer.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
1505cd8
)
Removed needless ; at the end of GST_PAD_TEMPLATE_FACTORY calls, which were causing...
author
Brian Cameron
<brian.cameron@sun.com>
Thu, 22 May 2003 11:04:31 +0000
(11:04 +0000)
committer
Brian Cameron
<brian.cameron@sun.com>
Thu, 22 May 2003 11:04:31 +0000
(11:04 +0000)
Original commit message from CVS:
Removed needless ; at the end of GST_PAD_TEMPLATE_FACTORY calls, which
were causing non-gcc compilers to break.
gst/qtdemux/qtdemux.c
patch
|
blob
|
history
diff --git
a/gst/qtdemux/qtdemux.c
b/gst/qtdemux/qtdemux.c
index
6faa659
..
4512f75
100644
(file)
--- 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;
/*