sdp: Avoid using g_memdup() since it is deprecated
authorNirbheek Chauhan <nirbheek@centricular.com>
Fri, 13 Aug 2021 14:05:23 +0000 (19:35 +0530)
committerNirbheek Chauhan <nirbheek@centricular.com>
Fri, 13 Aug 2021 14:05:23 +0000 (19:35 +0530)
commit3ced923da5baf8b7f64dc3b126195aae9b835099
treefc1937b0f36ee784e1548d8fe8fbd8afb85984cf
parent04856a3828411fe23fc043787b7687c0416e51fc
sdp: Avoid using g_memdup() since it is deprecated

g_memdup() is deprecated since GLib 2.68 and we want to avoid
deprecation warnings with recent versions of GLib. Instead of using
g_memdup2(), we can simply use the new gst_buffer_new_memdup() added
in 1.19.x

Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-base/-/merge_requests/1254>
gst-libs/gst/sdp/gstmikey.c