mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-03 16:09:39 +00:00
fe6b76c64e
The original code was:
if (!gst_structure_get (s, "srtp-key", GST_TYPE_BUFFER, &buf, NULL) || !buf) {
goto error;
} else {
stream->key = buf;
}
So use "srtp-key" if it is set so a non NULL buffer. The condition was
incorrectly inverted in
|
||
---|---|---|
.. | ||
gstsrtp.c | ||
gstsrtp.h | ||
gstsrtpdec.c | ||
gstsrtpdec.h | ||
gstsrtpelement.c | ||
gstsrtpelements.h | ||
gstsrtpenc.c | ||
gstsrtpenc.h | ||
gstsrtpenums.h | ||
gstsrtpplugin.c | ||
meson.build |