From: NAMJEONGYOON Date: Thu, 11 Aug 2016 01:03:16 +0000 (+0900) Subject: fix build error X-Git-Tag: submit/tizen/20160811.023523^0 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=119c3a3b3d935ef51aac519db3f55a65a655f986;p=platform%2Fcore%2Fapi%2Fplayer.git fix build error Change-Id: I8cea332571d8cb1149b8b90b1e6ffec9bc69978c --- diff --git a/test/player_test.c b/test/player_test.c index 8c899e1..557617e 100644 --- a/test/player_test.c +++ b/test/player_test.c @@ -1168,11 +1168,15 @@ static void _player_get_progressive_download_status() static void _player_enable_tsurf_pool(void) { +#ifndef TIZEN_TV bool enabled = FALSE; player_is_enabled_tsurf_pool(g_player[0], &enabled); g_print("tbm surface pool will be %s", (enabled) ? "disabled" : "enabled"); player_enable_tsurf_pool(g_player[0], !enabled); +#else + g_print("not support at TV profile"); +#endif } static void set_next_uri(char * uri)