diff --git a/subprojects/gst-plugins-bad/ext/dtls/gstdtlssrtpdec.c b/subprojects/gst-plugins-bad/ext/dtls/gstdtlssrtpdec.c index 8d90f4c0ea..f441e253f6 100644 --- a/subprojects/gst-plugins-bad/ext/dtls/gstdtlssrtpdec.c +++ b/subprojects/gst-plugins-bad/ext/dtls/gstdtlssrtpdec.c @@ -62,7 +62,7 @@ GST_DEBUG_CATEGORY_STATIC (gst_dtls_srtp_dec_debug); #define gst_dtls_srtp_dec_parent_class parent_class G_DEFINE_TYPE_WITH_CODE (GstDtlsSrtpDec, gst_dtls_srtp_dec, GST_TYPE_DTLS_SRTP_BIN, GST_DEBUG_CATEGORY_INIT (gst_dtls_srtp_dec_debug, - "dtlssrtpdec", 0, "DTLS Decoder")); + "dtlssrtpdec", 0, "DTLS-SRTP Decoder")); GST_ELEMENT_REGISTER_DEFINE_WITH_CODE (dtlssrtpdec, "dtlssrtpdec", GST_RANK_NONE, GST_TYPE_DTLS_SRTP_DEC, dtls_element_init (plugin)); diff --git a/subprojects/gst-plugins-bad/ext/dtls/gstdtlssrtpenc.c b/subprojects/gst-plugins-bad/ext/dtls/gstdtlssrtpenc.c index d27fc47450..8653151c31 100644 --- a/subprojects/gst-plugins-bad/ext/dtls/gstdtlssrtpenc.c +++ b/subprojects/gst-plugins-bad/ext/dtls/gstdtlssrtpenc.c @@ -63,8 +63,9 @@ GST_DEBUG_CATEGORY_STATIC (gst_dtls_srtp_enc_debug); #define gst_dtls_srtp_enc_parent_class parent_class G_DEFINE_TYPE_WITH_CODE (GstDtlsSrtpEnc, gst_dtls_srtp_enc, - GST_TYPE_DTLS_SRTP_BIN, GST_DEBUG_CATEGORY_INIT (gst_dtls_srtp_enc_debug, - "dtlssrtpenc", 0, "DTLS Decoder")); + GST_TYPE_DTLS_SRTP_BIN, + GST_DEBUG_CATEGORY_INIT (gst_dtls_srtp_enc_debug, + "dtlssrtpenc", 0, "DTLS-SRTP Encoder")); GST_ELEMENT_REGISTER_DEFINE_WITH_CODE (dtlssrtpenc, "dtlssrtpenc", GST_RANK_NONE, GST_TYPE_DTLS_SRTP_ENC, dtls_element_init (plugin));