gst/rtpmanager/gstrtpbin.c: Print the pad-name in debug log.
Original commit message from CVS: * gst/rtpmanager/gstrtpbin.c: Print the pad-name in debug log. * sys/dshowsrcwrapper/gstdshowaudiosrc.c: * sys/dshowsrcwrapper/gstdshowvideosrc.c: Use "-" instead of "_" in property names. Can we call them just "device" like everywhere else?
This commit is contained in:
parent
3a22f6fa93
commit
0a8be35287
10
ChangeLog
10
ChangeLog
@ -1,3 +1,13 @@
|
|||||||
|
2008-08-11 Stefan Kost <ensonic@users.sf.net>
|
||||||
|
|
||||||
|
* gst/rtpmanager/gstrtpbin.c:
|
||||||
|
Print the pad-name in debug log.
|
||||||
|
|
||||||
|
* sys/dshowsrcwrapper/gstdshowaudiosrc.c:
|
||||||
|
* sys/dshowsrcwrapper/gstdshowvideosrc.c:
|
||||||
|
Use "-" instead of "_" in property names. Can we call them just
|
||||||
|
"device" like everywhere else?
|
||||||
|
|
||||||
2008-08-08 Mark Nauwelaerts <mark.nauwelaerts@collabora.co.uk>
|
2008-08-08 Mark Nauwelaerts <mark.nauwelaerts@collabora.co.uk>
|
||||||
|
|
||||||
* ext/x264/gstx264enc.c: (gst_x264_enc_log_callback),
|
* ext/x264/gstx264enc.c: (gst_x264_enc_log_callback),
|
||||||
|
@ -1847,7 +1847,8 @@ new_ssrc_pad_found (GstElement * element, guint ssrc, GstPad * pad,
|
|||||||
|
|
||||||
rtpbin = session->bin;
|
rtpbin = session->bin;
|
||||||
|
|
||||||
GST_DEBUG_OBJECT (rtpbin, "new SSRC pad %08x", ssrc);
|
GST_DEBUG_OBJECT (rtpbin, "new SSRC pad %08x, %s:%s", ssrc,
|
||||||
|
GST_DEBUG_PAD_NAME (pad));
|
||||||
|
|
||||||
GST_RTP_BIN_SHUTDOWN_LOCK (rtpbin, shutdown);
|
GST_RTP_BIN_SHUTDOWN_LOCK (rtpbin, shutdown);
|
||||||
|
|
||||||
|
@ -171,7 +171,7 @@ gst_dshowaudiosrc_class_init (GstDshowAudioSrcClass * klass)
|
|||||||
|
|
||||||
g_object_class_install_property
|
g_object_class_install_property
|
||||||
(gobject_class, PROP_DEVICE_NAME,
|
(gobject_class, PROP_DEVICE_NAME,
|
||||||
g_param_spec_string ("device_name", "Device name",
|
g_param_spec_string ("device-name", "Device name",
|
||||||
"Human-readable name of the sound device", NULL, G_PARAM_READWRITE));
|
"Human-readable name of the sound device", NULL, G_PARAM_READWRITE));
|
||||||
|
|
||||||
GST_DEBUG_CATEGORY_INIT (dshowaudiosrc_debug, "dshowaudiosrc", 0,
|
GST_DEBUG_CATEGORY_INIT (dshowaudiosrc_debug, "dshowaudiosrc", 0,
|
||||||
@ -253,7 +253,7 @@ gst_dshowaudiosrc_probe_get_properties (GstPropertyProbe * probe)
|
|||||||
if (!props) {
|
if (!props) {
|
||||||
GParamSpec *pspec;
|
GParamSpec *pspec;
|
||||||
|
|
||||||
pspec = g_object_class_find_property (klass, "device_name");
|
pspec = g_object_class_find_property (klass, "device-name");
|
||||||
props = g_list_append (props, pspec);
|
props = g_list_append (props, pspec);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -185,7 +185,7 @@ gst_dshowvideosrc_class_init (GstDshowVideoSrcClass * klass)
|
|||||||
|
|
||||||
g_object_class_install_property
|
g_object_class_install_property
|
||||||
(gobject_class, PROP_DEVICE_NAME,
|
(gobject_class, PROP_DEVICE_NAME,
|
||||||
g_param_spec_string ("device_name", "Device name",
|
g_param_spec_string ("device-name", "Device name",
|
||||||
"Human-readable name of the sound device", NULL, G_PARAM_READWRITE));
|
"Human-readable name of the sound device", NULL, G_PARAM_READWRITE));
|
||||||
|
|
||||||
GST_DEBUG_CATEGORY_INIT (dshowvideosrc_debug, "dshowvideosrc", 0,
|
GST_DEBUG_CATEGORY_INIT (dshowvideosrc_debug, "dshowvideosrc", 0,
|
||||||
@ -307,7 +307,7 @@ gst_dshowvideosrc_probe_get_properties (GstPropertyProbe * probe)
|
|||||||
if (!props) {
|
if (!props) {
|
||||||
GParamSpec *pspec;
|
GParamSpec *pspec;
|
||||||
|
|
||||||
pspec = g_object_class_find_property (klass, "device_name");
|
pspec = g_object_class_find_property (klass, "device-name");
|
||||||
props = g_list_append (props, pspec);
|
props = g_list_append (props, pspec);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user