mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 20:21:24 +00:00
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.
This commit is contained in:
parent
37d86126ac
commit
6d19f51c85
1 changed files with 2 additions and 2 deletions
|
@ -62,7 +62,7 @@ GST_PAD_TEMPLATE_FACTORY (sink_templ,
|
||||||
"video/quicktime",
|
"video/quicktime",
|
||||||
NULL
|
NULL
|
||||||
)
|
)
|
||||||
);
|
)
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* so far i only support Photo Jpeg videos and no audio.
|
* 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),
|
"width", GST_PROPS_INT_RANGE (16, 4096),
|
||||||
"height", GST_PROPS_INT_RANGE (16, 4096)
|
"height", GST_PROPS_INT_RANGE (16, 4096)
|
||||||
)
|
)
|
||||||
);
|
)
|
||||||
|
|
||||||
static GstElementClass *parent_class = NULL;
|
static GstElementClass *parent_class = NULL;
|
||||||
/*
|
/*
|
||||||
|
|
Loading…
Reference in a new issue