Change-Id: I78924a1af46894595522f089d32cf9124d72e98b
Signed-off-by: Jihoon Kim <jihoon48.kim@samsung.com>
if (error_code != RECORDER_ERROR_NONE)
LOGW("Failed to set audio channel. error code : %d", error_code);
if (error_code != RECORDER_ERROR_NONE)
LOGW("Failed to set audio channel. error code : %d", error_code);
- recorder_attr_set_audio_device(recorder->recorder, RECORDER_AUDIO_DEVICE_MIC);
+ error_code = recorder_attr_set_audio_device(recorder->recorder, RECORDER_AUDIO_DEVICE_MIC);
+ if (error_code != RECORDER_ERROR_NONE)
+ LOGW("Failed to set audio device. error code : %d", error_code);
+
error_code = recorder_attr_set_time_limit(recorder->recorder, MAX_TIME);
if (error_code != RECORDER_ERROR_NONE)
LOGW("Failed to set time limit. error code : %d", error_code);
error_code = recorder_attr_set_time_limit(recorder->recorder, MAX_TIME);
if (error_code != RECORDER_ERROR_NONE)
LOGW("Failed to set time limit. error code : %d", error_code);
static void _drawing_app_control_reply_cb(app_control_h request, app_control_h reply, app_control_result_e result, void *user_data)
{
char* path = NULL;
static void _drawing_app_control_reply_cb(app_control_h request, app_control_h reply, app_control_result_e result, void *user_data)
{
char* path = NULL;
- app_control_get_extra_data(reply, APP_CONTROL_DATA_PATH, &path);
-
- if (path){
- PRINTFUNC(DLOG_DEBUG, "path=%s", path);
- char *pathes[] = {path, };
- reply_to_sender_by_callback(NULL, "image", (const char **)pathes, NULL);
- free(path);
+ int ret = app_control_get_extra_data(reply, APP_CONTROL_DATA_PATH, &path);
+ if (ret == APP_CONTROL_ERROR_NONE) {
+ if (path){
+ PRINTFUNC(DLOG_DEBUG, "path=%s", path);
+ char *pathes[] = {path, };
+ reply_to_sender_by_callback(NULL, "image", (const char **)pathes, NULL);
+ free(path);
+ }