Remove svi.
authorKeebum Kim <keebum.kim@samsung.com>
Tue, 9 Oct 2012 09:26:08 +0000 (18:26 +0900)
committerKeebum Kim <keebum.kim@samsung.com>
Tue, 9 Oct 2012 09:26:08 +0000 (18:26 +0900)
msg_helper/CMakeLists.txt
msg_helper/MsgSoundPlayer.cpp

index 893f0ce..049b3a8 100755 (executable)
@@ -29,7 +29,7 @@ INCLUDE_DIRECTORIES(
 )
 
 INCLUDE(FindPkgConfig)
-pkg_check_modules(msg_helper_pkgs REQUIRED glib-2.0 dlog vconf devman_haptic mm-player mm-fileinfo mm-player svi sensor)
+pkg_check_modules(msg_helper_pkgs REQUIRED glib-2.0 dlog vconf devman_haptic mm-player mm-fileinfo mm-player sensor)
 
 FOREACH(flag ${msg_helper_pkgs_CFLAGS})
        SET(EXTRA_CFLAGS "${EXTRA_CFLAGS} ${flag}")
index 10da84f..88dd1f0 100755 (executable)
@@ -24,7 +24,7 @@
 #include "MsgHelper.h"
 
 #include <devman_managed.h>
-#include <svi.h>
+//#include <svi.h>
 
 #include <mm_error.h>
 #include <mm_player.h>
@@ -386,7 +386,7 @@ int MsgSoundPlayMelody(char *pMsgToneFilePath, bool bIncreasing)
 void MsgSoundPlayVibration()
 {
        MSG_BEGIN();
-
+/*
        int ret = 0;
        int vibLevel = 0;
        char ivtFilePath[MAX_SOUND_FILE_LEN] = {0,};
@@ -400,7 +400,7 @@ void MsgSoundPlayVibration()
 
                g_timeout_add(MSG_VIBRATION_INTERVAL , MsgSoundVibTimeout, NULL);
 
-               /* set timer to stop vibration, then play melody */
+               // set timer to stop vibration, then play melody
                svi_get_path(SVI_TYPE_VIB, SVI_VIB_NOTIFICATION_MESSAGE, ivtFilePath, sizeof(ivtFilePath));
                ret = device_haptic_play_file(dev_handle, ivtFilePath, HAPTIC_TEST_ITERATION, vibLevel);
 
@@ -408,7 +408,7 @@ void MsgSoundPlayVibration()
                        MSG_DEBUG("Fail to play haptic : [%d]", ret);
                }
        }
-
+*/
        MSG_END();
 }