mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-19 14:56:36 +00:00
gst/tcp/gstmultifdsink.c: Fix warnings with gst-inspect: "buffers-min" property should be of G_TYPE_INT and not G_TYP...
Original commit message from CVS: * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_class_init): Fix warnings with gst-inspect: "buffers-min" property should be of G_TYPE_INT and not G_TYPE_INT64. Also fix typo in property description.
This commit is contained in:
parent
c10584ed40
commit
0ffac4cd56
2 changed files with 10 additions and 3 deletions
|
@ -1,3 +1,10 @@
|
|||
2006-06-22 Tim-Philipp Müller <tim at centricular dot net>
|
||||
|
||||
* gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_class_init):
|
||||
Fix warnings with gst-inspect: "buffers-min" property
|
||||
should be of G_TYPE_INT and not G_TYPE_INT64. Also fix
|
||||
typo in property description.
|
||||
|
||||
2006-06-22 Tim-Philipp Müller <tim at centricular dot net>
|
||||
|
||||
Patch by: Cody Russell <bratsche at gnome org>
|
||||
|
|
|
@ -388,11 +388,11 @@ gst_multi_fd_sink_class_init (GstMultiFdSinkClass * klass)
|
|||
G_MAXINT, DEFAULT_BYTES_MIN, G_PARAM_READWRITE));
|
||||
g_object_class_install_property (gobject_class, PROP_TIME_MIN,
|
||||
g_param_spec_int64 ("time-min", "Time min",
|
||||
"min number of time to queue (-1 = as litte as possible)", -1,
|
||||
"min number of time to queue (-1 = as little as possible)", -1,
|
||||
G_MAXINT64, DEFAULT_TIME_MIN, G_PARAM_READWRITE));
|
||||
g_object_class_install_property (gobject_class, PROP_BUFFERS_MIN,
|
||||
g_param_spec_int64 ("buffers-min", "Buffers min",
|
||||
"min number of buffers to queue (-1 = as litte as possible)", -1,
|
||||
g_param_spec_int ("buffers-min", "Buffers min",
|
||||
"min number of buffers to queue (-1 = as few as possible)", -1,
|
||||
G_MAXINT, DEFAULT_BUFFERS_MIN, G_PARAM_READWRITE));
|
||||
|
||||
#if NOT_IMPLEMENTED
|
||||
|
|
Loading…
Reference in a new issue