From 12eaa797b9ed94e75f8b7d8b6af523123b58f798 Mon Sep 17 00:00:00 2001 From: Eunhye Choi Date: Wed, 17 Aug 2022 15:23:32 +0900 Subject: [PATCH] [0.3.151] exclude locv - exclude locv about feature required api Change-Id: Iaaa7f4cbd6a58c3c40217054b9f084eca2ffc264 --- packaging/capi-media-player.spec | 2 +- src/player.c | 4 ++++ test/CMakeLists.txt | 7 +------ 3 files changed, 6 insertions(+), 7 deletions(-) diff --git a/packaging/capi-media-player.spec b/packaging/capi-media-player.spec index f8d6f4e..4f59462 100644 --- a/packaging/capi-media-player.spec +++ b/packaging/capi-media-player.spec @@ -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 diff --git a/src/player.c b/src/player.c index 10b29bb..18135ae 100644 --- a/src/player.c +++ b/src/player.c @@ -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) { diff --git a/test/CMakeLists.txt b/test/CMakeLists.txt index e0f2570..ed4dc11 100644 --- a/test/CMakeLists.txt +++ b/test/CMakeLists.txt @@ -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}/../) -- 2.7.4