webrtc_transceiver: Remove restriction of allowing to apply H264 info. only for DA 56/318556/1 accepted/tizen/8.0/unified/20241007.172612
authorSangchul Lee <sc11.lee@samsung.com>
Wed, 2 Oct 2024 07:10:30 +0000 (16:10 +0900)
committerSangchul Lee <sc11.lee@samsung.com>
Wed, 2 Oct 2024 07:12:56 +0000 (16:12 +0900)
[Version] 0.4.63
[Issue Type] Improvement

Change-Id: I823719dbd4c509e1fd509720c47ba02406b28f13
Signed-off-by: Sangchul Lee <sc11.lee@samsung.com>
CMakeLists.txt
packaging/capi-media-webrtc.spec
src/webrtc_transceiver.c

index 1c11da6438a93958f990bdce4bbea56066fb6ed9..26710090479bcce2c4191a390a4c98dc89699223 100644 (file)
@@ -21,9 +21,6 @@ IF(NOT TIZEN_PROFILE_TV)
 ELSE()
     ADD_DEFINITIONS("-DTIZEN_TV")
 ENDIF()
-IF(TIZEN_PROFILE_DA)
-    ADD_DEFINITIONS("-DTIZEN_DA")
-ENDIF()
 IF(TIZEN_FEATURE_UI)
     ADD_DEFINITIONS("-DTIZEN_FEATURE_UI")
 ENDIF()
index 9f7fc0c3a9eb85441ed6520b56f82616bd85de61..555e1f8a01c045e05a51b48c2aaf2ced0f85084e 100644 (file)
@@ -1,6 +1,6 @@
 Name:       capi-media-webrtc
 Summary:    A WebRTC library in Tizen Native API
-Version:    0.4.62
+Version:    0.4.63
 Release:    0
 Group:      Multimedia/API
 License:    Apache-2.0
@@ -116,11 +116,6 @@ MAJORVER=`echo %{version} | awk 'BEGIN {FS="."}{print $1}'`
 %else
 -DTIZEN_PROFILE_TV=off \
 %endif
-%if "%{_with_da_profile}" == "1"
--DTIZEN_PROFILE_DA=on \
-%else
--DTIZEN_PROFILE_DA=off \
-%endif
 %if "%{test_espp_render}" == "1"
 -DTIZEN_FEATURE_ESPP=on \
 %else
index 11b1c936eed5a634eee0190b490c0ae43644c0f5..504aa3136d0f0a143a07cc379ae13cf0447fc75a 100644 (file)
@@ -200,14 +200,12 @@ static GstCaps *__make_transceiver_caps_with_pt(rtp_payload_info_s *payload_info
                gst_caps_set_simple(caps,
                        "encoding-params", G_TYPE_STRING, "2",
                        NULL);
-#ifdef TIZEN_DA
        else if (payload_info->codec == WEBRTC_TRANSCEIVER_CODEC_H264)
                gst_caps_set_simple(caps,
                        "level-asymmetry-allowed", G_TYPE_STRING, "1",
                        "packetization-mode", G_TYPE_STRING, "1",
                        "profile-level-id", G_TYPE_STRING, "42e01f",
                        NULL);
-#endif
 
        return caps;
 }