CURRENT_STATUS_START_VIRTUAL_STREAM,
CURRENT_STATUS_STOP_VIRTUAL_STREAM,
CURRENT_STATUS_DESTROY_VIRTUAL_STREAM,
+#ifndef TIZEN_FEATURE_TV_PROD
CURRENT_STATUS_SET_VIRTUAL_STREAM_VOLUME,
+#endif
CURRENT_STATUS_SET_FILTER,
CURRENT_STATUS_SET_FILTER_PRESET,
CURRENT_STATUS_UNSET_FILTER,
g_menu_state = CURRENT_STATUS_STOP_VIRTUAL_STREAM;
else if (strncmp(cmd, "vdt", MAX_CMD_LEN) == 0)
g_menu_state = CURRENT_STATUS_DESTROY_VIRTUAL_STREAM;
+#ifndef TIZEN_FEATURE_TV_PROD
else if (strncmp(cmd, "vsv", MAX_CMD_LEN) == 0)
g_menu_state = CURRENT_STATUS_SET_VIRTUAL_STREAM_VOLUME;
+#endif
else if (strncmp(cmd, "sft", MAX_CMD_LEN) == 0)
g_menu_state = CURRENT_STATUS_SET_FILTER;
else if (strncmp(cmd, "sfp", MAX_CMD_LEN) == 0)
g_print("sso. *Set option for stream routing\n");
g_print("vcr. *Create VStream\t");
g_print("vsr. *Start VStream\t");
+#ifndef TIZEN_FEATURE_TV_PROD
g_print("vsv. *Set VStream Volume\n");
+#endif
g_print("vdt. *Destroy VStream\t");
g_print("vst. *Stop VStream\n");
g_print("sft. *Set Filter\t");
g_print("*** press enter to stop virtual stream\n");
else if (g_menu_state == CURRENT_STATUS_DESTROY_VIRTUAL_STREAM)
g_print("*** press enter to destroy virtual stream\n");
+#ifndef TIZEN_FEATURE_TV_PROD
else if (g_menu_state == CURRENT_STATUS_SET_VIRTUAL_STREAM_VOLUME)
g_print("*** input volume ratio of virtual stream (Min:0.0 ~ Max:1.0)\n");
+#endif
else if (g_menu_state == CURRENT_STATUS_SET_FILTER)
g_print("*** input filter type of media stream (0:LOW_PASS 1:HIGH_PASS 2:DELAY 3:SOUNDALIVE)\n");
else if (g_menu_state == CURRENT_STATUS_SET_FILTER_PRESET)
reset_menu_state();
break;
}
+#ifndef TIZEN_FEATURE_TV_PROD
case CURRENT_STATUS_SET_VIRTUAL_STREAM_VOLUME: {
int ret = SOUND_MANAGER_ERROR_NONE;
double ratio = 1.0;
reset_menu_state();
break;
}
+#endif
case CURRENT_STATUS_SET_FILTER: {
int ret = SOUND_MANAGER_ERROR_NONE;
sound_filter_e filter;