mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-18 12:15:19 +00:00
changed names from guchar* to gchar*, which makes C++ happy, and is, um, correct.
Original commit message from CVS: changed names from guchar* to gchar*, which makes C++ happy, and is, um, correct.
This commit is contained in:
parent
469e99dc90
commit
455567482c
4 changed files with 4 additions and 4 deletions
|
@ -114,7 +114,7 @@ gst_pipeline_init (GstPipeline *pipeline)
|
||||||
* Returns: newly created GstPipeline
|
* Returns: newly created GstPipeline
|
||||||
*/
|
*/
|
||||||
GstElement*
|
GstElement*
|
||||||
gst_pipeline_new (const guchar *name)
|
gst_pipeline_new (const gchar *name)
|
||||||
{
|
{
|
||||||
return gst_elementfactory_make ("pipeline", name);
|
return gst_elementfactory_make ("pipeline", name);
|
||||||
}
|
}
|
||||||
|
|
|
@ -57,7 +57,7 @@ struct _GstPipelineClass {
|
||||||
};
|
};
|
||||||
|
|
||||||
GType gst_pipeline_get_type (void);
|
GType gst_pipeline_get_type (void);
|
||||||
GstElement* gst_pipeline_new (const guchar *name);
|
GstElement* gst_pipeline_new (const gchar *name);
|
||||||
#define gst_pipeline_destroy(pipeline) gst_object_destroy(GST_OBJECT(pipeline))
|
#define gst_pipeline_destroy(pipeline) gst_object_destroy(GST_OBJECT(pipeline))
|
||||||
|
|
||||||
void gst_pipeline_iterate (GstPipeline *pipeline);
|
void gst_pipeline_iterate (GstPipeline *pipeline);
|
||||||
|
|
|
@ -227,7 +227,7 @@ gst_thread_get_property (GObject *object, guint prop_id, GValue *value, GParamSp
|
||||||
* Returns: The new thread
|
* Returns: The new thread
|
||||||
*/
|
*/
|
||||||
GstElement*
|
GstElement*
|
||||||
gst_thread_new (const guchar *name)
|
gst_thread_new (const gchar *name)
|
||||||
{
|
{
|
||||||
return gst_elementfactory_make ("thread", name);
|
return gst_elementfactory_make ("thread", name);
|
||||||
}
|
}
|
||||||
|
|
|
@ -82,7 +82,7 @@ struct _GstThreadClass {
|
||||||
|
|
||||||
GType gst_thread_get_type (void);
|
GType gst_thread_get_type (void);
|
||||||
|
|
||||||
GstElement* gst_thread_new (const guchar *name);
|
GstElement* gst_thread_new (const gchar *name);
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue