Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
George Kiagiadakis
gst-plugins-base
Commits
0125cb55
Commit
0125cb55
authored
Mar 18, 2010
by
Benjamin Otte
Committed by
Wim Taymans
Jun 15, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[MOVED FROM BAD 30/68] gst_element_class_set_details => gst_element_class_set_details_simple
parent
2f9ee2a8
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
7 deletions
+3
-7
gst/colorspace/gstcolorspace.c
gst/colorspace/gstcolorspace.c
+3
-7
No files found.
gst/colorspace/gstcolorspace.c
View file @
0125cb55
...
...
@@ -44,12 +44,6 @@ static GstColorspaceConverter gst_colorspace_converters[] = {
{
GST_COLORSPACE_YV12
,
GST_COLORSPACE_RGB16
,
gst_colorspace_YV12_to_rgb16
},
};
static
const
GstElementDetails
colorspace_details
=
GST_ELEMENT_DETAILS
(
"Colorspace converter"
,
"Filter/Converter/Video"
,
"Converts video from YUV to RGB"
,
"Wim Taymans <wim.taymans@chello.be>"
);
static
GstStaticPadTemplate
gst_colorspace_sink_template
=
GST_STATIC_PAD_TEMPLATE
(
"sink"
,
GST_PAD_SINK
,
...
...
@@ -490,7 +484,9 @@ gst_colorspace_base_init (gpointer g_class)
gst_element_class_add_pad_template
(
element_class
,
gst_static_pad_template_get
(
&
gst_colorspace_sink_template
));
gst_element_class_set_details
(
element_class
,
&
colorspace_details
);
gst_element_class_set_details_simple
(
element_class
,
"Colorspace converter"
,
"Filter/Converter/Video"
,
"Converts video from YUV to RGB"
,
"Wim Taymans <wim.taymans@chello.be>"
);
}
static
void
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment