diff options
author | Aleix Conchillo Flaqué <aleix@oblong.com> | 2014-03-21 22:16:41 -0700 |
---|---|---|
committer | Olivier Crête <olivier.crete@collabora.com> | 2014-06-03 16:18:25 -0400 |
commit | da30669589cfc8189f60aedfae98a217a9fae994 (patch) | |
tree | ae6362766d1c4a5a53dc6c88e453ff7f7ad613b7 /ext/srtp/gstsrtpdec.h | |
parent | c9ae275c7275e45fdfb4e1c33a7e319de473e0dc (diff) | |
download | gstreamer-plugins-bad-da30669589cfc8189f60aedfae98a217a9fae994.tar.gz |
srtp: add support for rollover counters and replay protection window size
We add a new signal, get-rollover-counter, to the SRTP encoder. Given a
ssrc the signal will return the currently internal SRTP rollover counter
for the given stream.
For the SRTP decoder we have a new SRTP caps parameter "roc" that needs
to be set when a new SRTP stream is created for a given SSRC.
https://bugzilla.gnome.org/show_bug.cgi?id=726861
Diffstat (limited to 'ext/srtp/gstsrtpdec.h')
-rw-r--r-- | ext/srtp/gstsrtpdec.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/ext/srtp/gstsrtpdec.h b/ext/srtp/gstsrtpdec.h index 8129dc08f..41862e032 100644 --- a/ext/srtp/gstsrtpdec.h +++ b/ext/srtp/gstsrtpdec.h @@ -81,6 +81,8 @@ struct _GstSrtpDec gboolean rtp_has_segment; gboolean rtcp_has_segment; + + gboolean roc_changed; }; struct _GstSrtpDecClass |