set_null_user_cb(cb_info, ev);
}
- static void __complete_cb_handler(callback_cb_info_s * cb_info, _player_recv_data *recv_data)
+//LCOV_EXCL_START
+ static void __complete_cb_handler(callback_cb_info_s *cb_info, _player_recv_data *recv_data)
{
muse_player_event_e ev = MUSE_PLAYER_EVENT_TYPE_COMPLETE;
- ((player_completed_cb) cb_info->user_cb[ev]) (cb_info->user_data[ev]);
+ ((player_completed_cb)cb_info->user_cb[ev])(cb_info->user_data[ev]);
}
#ifdef TIZEN_FEATURE_EVAS_RENDERER
}
#endif
- static void __interrupt_cb_handler(callback_cb_info_s * cb_info, _player_recv_data *recv_data)
+ static void __interrupt_cb_handler(callback_cb_info_s *cb_info, _player_recv_data *recv_data)
{
muse_player_event_e ev = MUSE_PLAYER_EVENT_TYPE_INTERRUPT;
- ((player_interrupted_cb) cb_info->user_cb[ev]) (PLAYER_INTERRUPTED_BY_RESOURCE_CONFLICT, cb_info->user_data[ev]);
+ ((player_interrupted_cb)cb_info->user_cb[ev])(PLAYER_INTERRUPTED_BY_RESOURCE_CONFLICT, cb_info->user_data[ev]);
}
+//LCOV_EXCL_STOP
- static void __error_cb_handler(callback_cb_info_s * cb_info, _player_recv_data *recv_data)
+ static void __error_cb_handler(callback_cb_info_s *cb_info, _player_recv_data *recv_data)
{
int code;
muse_player_event_e ev = MUSE_PLAYER_EVENT_TYPE_ERROR;
}
}
- static void __disconnected_error_cb_handler(callback_cb_info_s * cb_info, _player_recv_data *recv_data)
+//LCOV_EXCL_START
+ static void __disconnected_error_cb_handler(callback_cb_info_s *cb_info, _player_recv_data *recv_data)
{
muse_player_event_e ev = MUSE_PLAYER_EVENT_TYPE_ERROR;
- ((player_error_cb) cb_info->user_cb[ev]) (PLAYER_ERROR_SERVICE_DISCONNECTED, cb_info->user_data[ev]);
+ ((player_error_cb)cb_info->user_cb[ev])(PLAYER_ERROR_SERVICE_DISCONNECTED, cb_info->user_data[ev]);
}
+//LCOV_EXCL_STOP
- static void __buffering_cb_handler(callback_cb_info_s * cb_info, _player_recv_data *recv_data)
+ static void __buffering_cb_handler(callback_cb_info_s *cb_info, _player_recv_data *recv_data)
{
int percent;
muse_player_event_e ev = MUSE_PLAYER_EVENT_TYPE_BUFFERING;
PLAYER_SEND_MSG_ASYNC_WITH_NO_RETURN(MUSE_PLAYER_API_RETURN_VIDEO_DATA, cb_info->fd, MUSE_TYPE_POINTER, "v_data", v_data);
return;
+//LCOV_EXCL_STOP
}
- static void __audio_frame_cb_handler(callback_cb_info_s * cb_info, _player_recv_data *recv_data)
+//LCOV_EXCL_START
+ static void __audio_frame_cb_handler(callback_cb_info_s *cb_info, _player_recv_data *recv_data)
{
tbm_bo bo = NULL;
tbm_bo_handle thandle;
{
}
- static void __media_stream_video_buffer_cb_handler(callback_cb_info_s * cb_info, _player_recv_data *recv_data)
+//LCOV_EXCL_STOP
+
+ static void __media_stream_video_buffer_cb_handler(callback_cb_info_s *cb_info, _player_recv_data *recv_data)
{
/* player_media_stream_buffer_status_e status; */
int status;
}
}
- static void __media_stream_audio_buffer_cb_handler(callback_cb_info_s * cb_info, _player_recv_data *recv_data)
+//LCOV_EXCL_START
+ static void __media_stream_audio_buffer_cb_handler(callback_cb_info_s *cb_info, _player_recv_data *recv_data)
{
/* player_media_stream_buffer_status_e status; */
int status;
}
}
+//LCOV_EXCL_STOP
- static void __media_stream_video_seek_cb_handler(callback_cb_info_s * cb_info, _player_recv_data *recv_data)
+ static void __media_stream_video_seek_cb_handler(callback_cb_info_s *cb_info, _player_recv_data *recv_data)
{
unsigned long long offset;
}
}
- static void __media_stream_audio_seek_cb_handler(callback_cb_info_s * cb_info, _player_recv_data *recv_data)
+//LCOV_EXCL_START
+ static void __media_stream_audio_seek_cb_handler(callback_cb_info_s *cb_info, _player_recv_data *recv_data)
{
unsigned long long offset;
(offset, cb_info->user_data[MUSE_PLAYER_EVENT_TYPE_MEDIA_STREAM_AUDIO_SEEK]);
}
}
+//LCOV_EXCL_STOP
- static void __video_stream_changed_cb_handler(callback_cb_info_s * cb_info, _player_recv_data *recv_data)
+ static void __video_stream_changed_cb_handler(callback_cb_info_s *cb_info, _player_recv_data *recv_data)
{
int width;
int height;
}
}
- static void _notify_disconnected(callback_cb_info_s * cb_info)
+//LCOV_EXCL_START
+ static void _notify_disconnected(callback_cb_info_s *cb_info)
{
muse_player_event_e event = MUSE_PLAYER_EVENT_TYPE_SERVICE_DISCONNECTED;
if (!cb_info || !cb_info->user_cb[MUSE_PLAYER_EVENT_TYPE_ERROR])