#include "operationpickviewapp.h"
#include "ui-utils.h"
-#include <service_adaptor_type.h>
#include "filemanager-util.h"
#include "videoplayer-util.h"
#include "soundplayer-util.h"
//DBG("shared_path%s", shared_res_path);
//strcat(shared_res_path, "sounds/");
DBG("shared_res_path%s", shared_res_path);
- filemanager_utils_get_file_list_of_type(shared_res_path,&file_list, NULL, ad);
+ filemanager_utils_get_file_list_of_type(shared_res_path,&file_list, FILE_TYPE_NONE, ad);
//filemanager_utils_get_file_list_of_type(get_storage_audio_dir_path(),&file_list, FILE_TYPE_MUSIC, ad);
return file_list;
}
int result = player_create(&player);
if(result == PLAYER_ERROR_NONE)
{
- result = player_set_sound_type(player, SOUND_TYPE_MEDIA);
- RETVM_IF(result != PLAYER_ERROR_NONE, NULL, "player_set_sound_type fail > Error = %s", get_video_player_error(result));
result = player_set_volume(player, 1.0, 1.0);
RETVM_IF(result != PLAYER_ERROR_NONE, NULL, "player_set_volume fail > Error = %s", get_video_player_error(result));
result = player_set_looping(player, true);