mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-23 10:11:08 +00:00
h264parse: change "config-interval" property type from uint to int
So we can use -1 as special value like in rtph264pay. https://bugzilla.gnome.org/show_bug.cgi?id=766803
This commit is contained in:
parent
a913a0b967
commit
0c04e004bb
2 changed files with 4 additions and 4 deletions
|
@ -129,7 +129,7 @@ gst_h264_parse_class_init (GstH264ParseClass * klass)
|
||||||
gobject_class->get_property = gst_h264_parse_get_property;
|
gobject_class->get_property = gst_h264_parse_get_property;
|
||||||
|
|
||||||
g_object_class_install_property (gobject_class, PROP_CONFIG_INTERVAL,
|
g_object_class_install_property (gobject_class, PROP_CONFIG_INTERVAL,
|
||||||
g_param_spec_uint ("config-interval",
|
g_param_spec_int ("config-interval",
|
||||||
"SPS PPS Send Interval",
|
"SPS PPS Send Interval",
|
||||||
"Send SPS and PPS Insertion Interval in seconds (sprop parameter sets "
|
"Send SPS and PPS Insertion Interval in seconds (sprop parameter sets "
|
||||||
"will be multiplexed in the data stream when detected.) (0 = disabled)",
|
"will be multiplexed in the data stream when detected.) (0 = disabled)",
|
||||||
|
@ -2799,7 +2799,7 @@ gst_h264_parse_set_property (GObject * object, guint prop_id,
|
||||||
|
|
||||||
switch (prop_id) {
|
switch (prop_id) {
|
||||||
case PROP_CONFIG_INTERVAL:
|
case PROP_CONFIG_INTERVAL:
|
||||||
parse->interval = g_value_get_uint (value);
|
parse->interval = g_value_get_int (value);
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
|
||||||
|
@ -2817,7 +2817,7 @@ gst_h264_parse_get_property (GObject * object, guint prop_id,
|
||||||
|
|
||||||
switch (prop_id) {
|
switch (prop_id) {
|
||||||
case PROP_CONFIG_INTERVAL:
|
case PROP_CONFIG_INTERVAL:
|
||||||
g_value_set_uint (value, parse->interval);
|
g_value_set_int (value, parse->interval);
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
|
||||||
|
|
|
@ -118,7 +118,7 @@ struct _GstH264Parse
|
||||||
gboolean picture_start;
|
gboolean picture_start;
|
||||||
|
|
||||||
/* props */
|
/* props */
|
||||||
guint interval;
|
gint interval;
|
||||||
|
|
||||||
GstClockTime pending_key_unit_ts;
|
GstClockTime pending_key_unit_ts;
|
||||||
GstEvent *force_key_unit_event;
|
GstEvent *force_key_unit_event;
|
||||||
|
|
Loading…
Reference in a new issue