webrtcbin: Correct logs 02/289502/1 accepted/tizen/unified/20230313.022913
authorSangchul Lee <sc11.lee@samsung.com>
Thu, 9 Mar 2023 02:12:47 +0000 (11:12 +0900)
committerSangchul Lee <sc11.lee@samsung.com>
Thu, 9 Mar 2023 02:12:47 +0000 (11:12 +0900)
Change-Id: I7b84e6499fa6adc5f007b61c04cb11bcfd525009

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

index eefdc22..c9c83f3 100644 (file)
@@ -62,7 +62,7 @@
 
 Name:           %{_name}
 Version:        1.22.0
-Release:        17
+Release:        18
 Summary:        Streaming-Media Framework Runtime
 License:        LGPL-2.0+
 Group:          Multimedia/Framework
index 75ce250..7f0e7fd 100644 (file)
@@ -5592,7 +5592,8 @@ ensure_rtx_hdr_ext (TransportStream * stream)
         g_warn_if_reached ();
       gst_rtp_header_extension_set_id (stream->rtxreceive_stream_id,
           stream->rtphdrext_id_stream_id);
-#ifdef TIZEN_FEATURE_BUG_FIX
+
+#ifdef TIZEN_FEATURE_WEBRTC_MODIFICATION
       GST_DEBUG_OBJECT (stream, "adding rtp header extension %" GST_PTR_FORMAT
           " with id %u to %" GST_PTR_FORMAT, stream->rtxreceive_stream_id,
           stream->rtphdrext_id_stream_id, stream->rtxreceive);
@@ -5601,6 +5602,7 @@ ensure_rtx_hdr_ext (TransportStream * stream)
           " with id %u to %" GST_PTR_FORMAT, stream->rtxsend_stream_id,
           stream->rtphdrext_id_stream_id, stream->rtxreceive);
 #endif
+
       g_signal_emit_by_name (stream->rtxreceive, "add-extension",
           stream->rtxreceive_stream_id);
     }
@@ -5615,9 +5617,15 @@ ensure_rtx_hdr_ext (TransportStream * stream)
       gst_rtp_header_extension_set_id (stream->rtxreceive_repaired_stream_id,
           stream->rtphdrext_id_repaired_stream_id);
 
+#ifdef TIZEN_FEATURE_WEBRTC_MODIFICATION
+      GST_DEBUG_OBJECT (stream, "adding rtp header extension %" GST_PTR_FORMAT
+          " with id %u to %" GST_PTR_FORMAT, stream->rtxreceive_repaired_stream_id,
+          stream->rtphdrext_id_repaired_stream_id, stream->rtxreceive);
+#else
       GST_DEBUG_OBJECT (stream, "adding rtp header extension %" GST_PTR_FORMAT
           " with id %u to %" GST_PTR_FORMAT, stream->rtxsend_repaired_stream_id,
           stream->rtphdrext_id_repaired_stream_id, stream->rtxreceive);
+#endif
 
       g_signal_emit_by_name (stream->rtxreceive, "add-extension",
           stream->rtxreceive_repaired_stream_id);