mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-13 12:51:16 +00:00
media: fix message
Fix a debug message Make dumping RTCP stats configurable
This commit is contained in:
parent
3fc1439965
commit
03ae66062b
1 changed files with 15 additions and 1 deletions
|
@ -27,6 +27,9 @@
|
|||
#define DEFAULT_SHARED FALSE
|
||||
#define DEFAULT_REUSABLE FALSE
|
||||
|
||||
/* define to dump received RTCP packets */
|
||||
#undef DUMP_STATS
|
||||
|
||||
enum
|
||||
{
|
||||
PROP_0,
|
||||
|
@ -792,10 +795,21 @@ on_ssrc_active (GObject *session, GObject *source, GstRTSPMediaStream *stream)
|
|||
|
||||
trans = g_object_get_qdata (source, ssrc_stream_map_key);
|
||||
|
||||
g_message ("%p: source %p in transport %p is active", stream, trans, source);
|
||||
g_message ("%p: source %p in transport %p is active", stream, source, trans);
|
||||
|
||||
if (trans && trans->keep_alive)
|
||||
trans->keep_alive (trans->ka_user_data);
|
||||
|
||||
#ifdef DUMP_STATS
|
||||
{
|
||||
GstStructure *stats;
|
||||
g_object_get (source, "stats", &stats, NULL);
|
||||
if (stats) {
|
||||
dump_structure (stats);
|
||||
gst_structure_free (stats);
|
||||
}
|
||||
}
|
||||
#endif
|
||||
}
|
||||
|
||||
static void
|
||||
|
|
Loading…
Reference in a new issue