From 119c3a3b3d935ef51aac519db3f55a65a655f986 Mon Sep 17 00:00:00 2001 From: NAMJEONGYOON Date: Thu, 11 Aug 2016 10:03:16 +0900 Subject: [PATCH] fix build error Change-Id: I8cea332571d8cb1149b8b90b1e6ffec9bc69978c --- test/player_test.c | 4 ++++ 1 file changed, 4 insertions(+) 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) -- 2.34.1