[Version] 0.3.179
[Issue Type] Convention
Change-Id: I18a9e20c7e201ddfe929e75c02416d1225d0f92a
Signed-off-by: Sangchul Lee <sc11.lee@samsung.com>
int _check_feature(const char *feature);
/* private */
-int _webrtc_stop(webrtc_s *webrtc);
+int _stop(webrtc_s *webrtc);
int _gst_init(webrtc_s *webrtc);
int _gst_build_pipeline(webrtc_s *webrtc);
void _gst_destroy_pipeline(webrtc_s *webrtc);
Name: capi-media-webrtc
Summary: A WebRTC library in Tizen Native API
-Version: 0.3.178
+Version: 0.3.179
Release: 0
Group: Multimedia/API
License: Apache-2.0
RET_VAL_IF(_webrtc == NULL, WEBRTC_ERROR_INVALID_PARAMETER, "webrtc is NULL");
- return _webrtc_stop(_webrtc);
+ return _stop(_webrtc);
}
int webrtc_set_state_changed_cb(webrtc_h webrtc, webrtc_state_changed_cb callback, void *user_data)
return (signaling_state == GST_WEBRTC_SIGNALING_STATE_HAVE_REMOTE_OFFER);
}
-int _webrtc_stop(webrtc_s *webrtc)
+int _stop(webrtc_s *webrtc)
{
int ret = WEBRTC_ERROR_NONE;
g_autoptr(GMutexLocker) locker = NULL;
}
}
- if (_webrtc_stop(webrtc) != WEBRTC_ERROR_NONE)
+ if (_stop(webrtc) != WEBRTC_ERROR_NONE)
ret = false;
_post_error_cb_in_idle(webrtc, WEBRTC_ERROR_RESOURCE_CONFLICT);