Change-Id: I843896f8de169a4e6a643de62624696ff5d25faf
int sound_manager_get_current_media_playback_device_type(sound_device_type_e *device_type)
{
int ret = MM_ERROR_NONE;
+#if 0
char *device_type_str = NULL;
+#endif
LOGI(">> enter");
SM_NULL_ARG_CHECK(device_type);
+#if 0
ret = _get_current_media_routing_path("out", &device_type_str);
if (ret == MM_ERROR_NONE)
ret = _convert_device_type_str_to_enum(device_type_str, device_type);
+#endif
return _convert_sound_manager_error_code(__func__, ret);
}