mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 12:11:13 +00:00
rtmp: don't use gst_element_class_install_std_props()
It's about to be removed.
This commit is contained in:
parent
8765068879
commit
658cbeac06
2 changed files with 15 additions and 13 deletions
|
@ -50,12 +50,7 @@
|
||||||
GST_DEBUG_CATEGORY_STATIC (gst_rtmp_sink_debug);
|
GST_DEBUG_CATEGORY_STATIC (gst_rtmp_sink_debug);
|
||||||
#define GST_CAT_DEFAULT gst_rtmp_sink_debug
|
#define GST_CAT_DEFAULT gst_rtmp_sink_debug
|
||||||
|
|
||||||
/* Filter signals and args */
|
#define DEFAULT_LOCATION NULL
|
||||||
enum
|
|
||||||
{
|
|
||||||
/* FILL ME */
|
|
||||||
LAST_SIGNAL
|
|
||||||
};
|
|
||||||
|
|
||||||
enum
|
enum
|
||||||
{
|
{
|
||||||
|
@ -101,8 +96,9 @@ gst_rtmp_sink_class_init (GstRTMPSinkClass * klass)
|
||||||
gobject_class->set_property = gst_rtmp_sink_set_property;
|
gobject_class->set_property = gst_rtmp_sink_set_property;
|
||||||
gobject_class->get_property = gst_rtmp_sink_get_property;
|
gobject_class->get_property = gst_rtmp_sink_get_property;
|
||||||
|
|
||||||
gst_element_class_install_std_props (gstelement_class,
|
g_object_class_install_property (gobject_class, PROP_LOCATION,
|
||||||
"location", PROP_LOCATION, G_PARAM_READWRITE, NULL);
|
g_param_spec_string ("location", "RTMP Location", "RTMP url",
|
||||||
|
DEFAULT_LOCATION, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
|
||||||
|
|
||||||
gst_element_class_set_details_simple (gstelement_class,
|
gst_element_class_set_details_simple (gstelement_class,
|
||||||
"RTMP output sink",
|
"RTMP output sink",
|
||||||
|
@ -300,7 +296,7 @@ gst_rtmp_sink_uri_set_uri (GstURIHandler * handler, const gchar * uri,
|
||||||
|
|
||||||
if (GST_STATE (sink) >= GST_STATE_PAUSED) {
|
if (GST_STATE (sink) >= GST_STATE_PAUSED) {
|
||||||
g_set_error (error, GST_URI_ERROR, GST_URI_ERROR_BAD_STATE,
|
g_set_error (error, GST_URI_ERROR, GST_URI_ERROR_BAD_STATE,
|
||||||
"Changing the URI on rtmpsrc when it is running is not supported");
|
"Changing the URI on rtmpsink when it is running is not supported");
|
||||||
return FALSE;
|
return FALSE;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -68,11 +68,15 @@ static GstStaticPadTemplate srctemplate = GST_STATIC_PAD_TEMPLATE ("src",
|
||||||
enum
|
enum
|
||||||
{
|
{
|
||||||
PROP_0,
|
PROP_0,
|
||||||
PROP_LOCATION,
|
PROP_LOCATION
|
||||||
|
#if 0
|
||||||
PROP_SWF_URL,
|
PROP_SWF_URL,
|
||||||
PROP_PAGE_URL
|
PROP_PAGE_URL
|
||||||
|
#endif
|
||||||
};
|
};
|
||||||
|
|
||||||
|
#define DEFAULT_LOCATION NULL
|
||||||
|
|
||||||
static void gst_rtmp_src_uri_handler_init (gpointer g_iface,
|
static void gst_rtmp_src_uri_handler_init (gpointer g_iface,
|
||||||
gpointer iface_data);
|
gpointer iface_data);
|
||||||
|
|
||||||
|
@ -115,8 +119,10 @@ gst_rtmp_src_class_init (GstRTMPSrcClass * klass)
|
||||||
gobject_class->get_property = gst_rtmp_src_get_property;
|
gobject_class->get_property = gst_rtmp_src_get_property;
|
||||||
|
|
||||||
/* properties */
|
/* properties */
|
||||||
gst_element_class_install_std_props (gstelement_class,
|
g_object_class_install_property (gobject_class, PROP_LOCATION,
|
||||||
"location", PROP_LOCATION, G_PARAM_READWRITE, NULL);
|
g_param_spec_string ("location", "RTMP Location",
|
||||||
|
"Location of the RTMP url to read",
|
||||||
|
DEFAULT_LOCATION, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
|
||||||
|
|
||||||
gst_element_class_add_pad_template (gstelement_class,
|
gst_element_class_add_pad_template (gstelement_class,
|
||||||
gst_static_pad_template_get (&srctemplate));
|
gst_static_pad_template_get (&srctemplate));
|
||||||
|
|
Loading…
Reference in a new issue