fixup! gst-plugins-bad: Rename some definitions for TIZEN 33/271433/1 accepted/tizen/unified/20220222.132931 submit/tizen/20220221.101104
authorSangchul Lee <sc11.lee@samsung.com>
Mon, 21 Feb 2022 07:28:40 +0000 (16:28 +0900)
committerSangchul Lee <sc11.lee@samsung.com>
Mon, 21 Feb 2022 07:29:09 +0000 (16:29 +0900)
[Version] 1.20.0-3
[Issue Type] Typo

Change-Id: I9a336c1f21322c503e4702f443013ac7ef1a77e3

packaging/gstreamer.spec
subprojects/gst-plugins-bad/ext/webrtc/gstwebrtcice.c

index 8085ce378c29b5bef3c02f53430b2945404d0434..d1078656f30310bbc716480e9b47574f1e8e8307 100644 (file)
@@ -59,7 +59,7 @@
 
 Name:           %{_name}
 Version:        1.20.0
-Release:        2
+Release:        3
 Summary:        Streaming-Media Framework Runtime
 License:        LGPL-2.0+
 Group:          Multimedia/Framework
index 92b559436aee592456c0a1a2576cd8c234091892..745ea74196bf8f8fa20521f9883f53291965a078 100644 (file)
@@ -639,7 +639,7 @@ gst_webrtc_ice_add_candidate (GstWebRTCICE * ice, GstWebRTCICEStream * stream,
   if (!cand) {
     /* might be a .local candidate */
     char *prefix = NULL, *address = NULL, *postfix = NULL;
-#ifndef TIZEN_FEATURE_MEMORY_LEAK
+#ifndef TIZEN_FEATURE_FIX_MEMORY_LEAK
     char *new_addr, *new_candidate;
 #else
     char *new_addr = NULL, *new_candidate = NULL;
@@ -675,7 +675,7 @@ gst_webrtc_ice_add_candidate (GstWebRTCICE * ice, GstWebRTCICEStream * stream,
     cand =
         nice_agent_parse_remote_candidate_sdp (ice->priv->nice_agent,
         item->nice_stream_id, new_candidate);
-#ifndef TIZEN_FEATURE_MEMORY_LEAK
+#ifndef TIZEN_FEATURE_FIX_MEMORY_LEAK
     g_free (new_candidate);
 #endif
     if (!cand) {
@@ -684,7 +684,7 @@ gst_webrtc_ice_add_candidate (GstWebRTCICE * ice, GstWebRTCICEStream * stream,
       goto fail;
     }
 
-#ifdef TIZEN_FEATURE_MEMORY_LEAK
+#ifdef TIZEN_FEATURE_FIX_MEMORY_LEAK
     g_free (address);
     g_free (new_candidate);
 #endif
@@ -694,7 +694,7 @@ gst_webrtc_ice_add_candidate (GstWebRTCICE * ice, GstWebRTCICEStream * stream,
 
     if (0) {
     fail:
-#ifdef TIZEN_FEATURE_MEMORY_LEAK
+#ifdef TIZEN_FEATURE_FIX_MEMORY_LEAK
       g_free (new_addr);
       g_free (new_candidate);
 #endif