Fix SVACE defect (SIGN_EXTENSION) 11/295311/1 accepted/tizen_8.0_unified accepted/tizen_unified tizen tizen_8.0 accepted/tizen/8.0/unified/20231005.092740 accepted/tizen/unified/20230710.013103 tizen_8.0_m2_release
authorSeungbae Shin <seungbae.shin@samsung.com>
Wed, 5 Jul 2023 04:57:15 +0000 (13:57 +0900)
committerSeungbae Shin <seungbae.shin@samsung.com>
Wed, 5 Jul 2023 04:57:56 +0000 (13:57 +0900)
[Version] 0.1.149
[IssueType] Svace

Change-Id: I7dab1f8c09d5a89ef10ba11d67c0e5fffba6d931

packaging/capi-media-streamer.spec
src/media_streamer_gst_webrtc.c

index 00882ca62dbd6ce30a6ea576e5c6091e8f212619..2750ea0a104abc7906b25aa04e70c3f7d8b867e5 100644 (file)
@@ -1,6 +1,6 @@
 Name:       capi-media-streamer
 Summary:    A Media Streamer API
-Version:    0.1.148
+Version:    0.1.149
 Release:    0
 Group:      Multimedia/API
 License:    Apache-2.0
index 7cecb9086a0e67d0f75b8baa146b49d3ce897b30..58a9c0230683ed278120d4ff5a26e9e8f5f27a1c 100644 (file)
@@ -29,7 +29,7 @@ static gchar *__make_ice_candidate_message(guint mlineindex, gchar *candidate)
 
        ice = json_object_new();
        json_object_set_string_member(ice, "candidate", candidate);
-       json_object_set_int_member(ice, "sdpMLineIndex", mlineindex);
+       json_object_set_int_member(ice, "sdpMLineIndex", (gint64)mlineindex);
 
        msg = json_object_new();
        json_object_set_object_member(msg, "ice", ice);