[0.3.151] exclude locv 43/279743/1 accepted/tizen_7.0_unified accepted/tizen_7.0_unified_hotfix tizen_7.0_hotfix accepted/tizen/7.0/unified/20221110.061805 accepted/tizen/7.0/unified/hotfix/20221116.104806 accepted/tizen/unified/20220818.210812 submit/tizen/20220817.074602 tizen_7.0_m2_release
authorEunhye Choi <eunhae1.choi@samsung.com>
Wed, 17 Aug 2022 06:23:32 +0000 (15:23 +0900)
committerEunhye Choi <eunhae1.choi@samsung.com>
Wed, 17 Aug 2022 06:23:35 +0000 (15:23 +0900)
- exclude locv about feature required api

Change-Id: Iaaa7f4cbd6a58c3c40217054b9f084eca2ffc264

packaging/capi-media-player.spec
src/player.c
test/CMakeLists.txt

index f8d6f4e..4f59462 100644 (file)
@@ -1,6 +1,6 @@
 Name:       capi-media-player
 Summary:    A Media Player API
-Version:    0.3.150
+Version:    0.3.151
 Release:    0
 Group:      Multimedia/API
 License:    Apache-2.0
index 10b29bb..18135ae 100644 (file)
@@ -4978,6 +4978,7 @@ int player_get_streaming_buffering_time(player_h player, int *prebuffer_ms, int
        return ret;
 }
 
+//LCOV_EXCL_START
 int player_360_is_content_spherical(player_h player, bool *is_spherical)
 {
        int ret = PLAYER_ERROR_NONE;
@@ -5256,6 +5257,7 @@ int player_360_set_zoom_with_field_of_view(player_h player, float level, int hor
        LOGD("LEAVE 0x%X", ret);
        return ret;
 }
+//LCOV_EXCL_STOP
 
 int player_set_replaygain_enabled(player_h player, bool enabled)
 {
@@ -5386,6 +5388,7 @@ int player_audio_pitch_get_value(player_h player, float *value)
        return ret;
 }
 
+//LCOV_EXCL_START
 int player_audio_offload_foreach_supported_format(player_h player, player_supported_media_format_cb callback, void *user_data)
 {
        int ret = PLAYER_ERROR_NONE;
@@ -5484,6 +5487,7 @@ int player_audio_offload_is_activated(player_h player, bool *activated)
        g_free(ret_buf);
        return ret;
 }
+//LCOV_EXCL_STOP
 
 int player_set_audio_codec_type(player_h player, player_codec_type_e codec_type)
 {
index e0f2570..ed4dc11 100644 (file)
@@ -1,12 +1,7 @@
 CMAKE_MINIMUM_REQUIRED(VERSION 2.6)
 SET(fw_test "${fw_name}-test")
 
-IF (TIZEN_WEARABLE)
-INCLUDE_DIRECTORIES(../include/wearable)
-ELSE (TIZEN_WEARABLE)
-INCLUDE_DIRECTORIES(../include/common)
-ENDIF (TIZEN_WEARABLE)
-
+INCLUDE_DIRECTORIES(../include)
 INCLUDE_DIRECTORIES(event-handler/include)
 link_directories(${CMAKE_SOURCE_DIR}/../)