mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-26 19:51:11 +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
|
||||
*/
|
||||
GstElement*
|
||||
gst_pipeline_new (const guchar *name)
|
||||
gst_pipeline_new (const gchar *name)
|
||||
{
|
||||
return gst_elementfactory_make ("pipeline", name);
|
||||
}
|
||||
|
|
|
@ -57,7 +57,7 @@ struct _GstPipelineClass {
|
|||
};
|
||||
|
||||
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))
|
||||
|
||||
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
|
||||
*/
|
||||
GstElement*
|
||||
gst_thread_new (const guchar *name)
|
||||
gst_thread_new (const gchar *name)
|
||||
{
|
||||
return gst_elementfactory_make ("thread", name);
|
||||
}
|
||||
|
|
|
@ -82,7 +82,7 @@ struct _GstThreadClass {
|
|||
|
||||
GType gst_thread_get_type (void);
|
||||
|
||||
GstElement* gst_thread_new (const guchar *name);
|
||||
GstElement* gst_thread_new (const gchar *name);
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue