From bded8b941d7ff77d17fc179519fdfa762365b2a6 Mon Sep 17 00:00:00 2001 From: Eunhye Choi Date: Fri, 12 Jul 2019 17:06:08 +0900 Subject: [PATCH] [0.3.118] apply the changed api id - api id is changed by below commit : 60e5aaac4cc8258b03ab2dd24e4dac4c6bda0689 Change-Id: I0805e45ecdf228e0e1c5925c0c3af0dc15330b48 --- src/player_internal.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/player_internal.c b/src/player_internal.c index 0e08614..c3ad8ed 100644 --- a/src/player_internal.c +++ b/src/player_internal.c @@ -442,7 +442,7 @@ int player_set_audio_offload_enabled(player_h player, bool enabled) { PLAYER_INSTANCE_CHECK(player); int ret = PLAYER_ERROR_NONE; - muse_player_api_e api = MUSE_PLAYER_API_SET_AUDIO_OFFLOAD_ENABLED; + muse_player_api_e api = MUSE_PLAYER_API_AUDIO_OFFLOAD_SET_ENABLED; player_cli_s *pc = (player_cli_s *)player; char *ret_buf = NULL; int val = (int)enabled; @@ -459,7 +459,7 @@ int player_is_audio_offload_enabled(player_h player, bool *enabled) PLAYER_INSTANCE_CHECK(player); PLAYER_NULL_ARG_CHECK(enabled); int ret = PLAYER_ERROR_NONE; - muse_player_api_e api = MUSE_PLAYER_API_IS_AUDIO_OFFLOAD_ENABLED; + muse_player_api_e api = MUSE_PLAYER_API_AUDIO_OFFLOAD_IS_ENABLED; player_cli_s *pc = (player_cli_s *)player; char *ret_buf = NULL; int val = -1; -- 2.7.4