diff options
author | Olivier CrĂȘte <olivier.crete@collabora.com> | 2014-05-01 19:10:43 -0400 |
---|---|---|
committer | Olivier CrĂȘte <olivier.crete@collabora.com> | 2014-05-01 19:10:43 -0400 |
commit | 494b8e110d76f5c57d99d928eab3f478d9aa4a3f (patch) | |
tree | 9203f0e10df488684b669fcf2d341453534ba101 /ext/srtp/gstsrtpdec.c | |
parent | 9c7da93b9df526fd93dc14038b0a00835f82002e (diff) | |
download | gstreamer-plugins-bad-494b8e110d76f5c57d99d928eab3f478d9aa4a3f.tar.gz |
srtpdec: Use object debug
Diffstat (limited to 'ext/srtp/gstsrtpdec.c')
-rw-r--r-- | ext/srtp/gstsrtpdec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/srtp/gstsrtpdec.c b/ext/srtp/gstsrtpdec.c index 3a97eee6e..3fff82c1c 100644 --- a/ext/srtp/gstsrtpdec.c +++ b/ext/srtp/gstsrtpdec.c @@ -425,7 +425,7 @@ get_stream_from_caps (GstSrtpDec * filter, GstCaps * caps, guint32 ssrc) } if (gst_structure_get (s, "srtp-key", GST_TYPE_BUFFER, &buf, NULL) || !buf) { - GST_DEBUG ("Got key [%p]", buf); + GST_DEBUG_OBJECT (filter, "Got key [%p] for SSRC %u", buf, ssrc); stream->key = buf; } else if (STREAM_HAS_CRYPTO (stream)) { goto error; |