* @section CAPI_MEDIA_WEBRTC_OVERVIEW Overview
* The WebRTC API provides functions to communicate with the remote peer using multimedia sources and generic data.
* The multimedia sources include audio/video stream from microphone, camera or media file.
- * The generic data includes string or byte data.
+ * The generic data includes string or byte data.\n
* This API set allows you to:
* - add/remove/mute/pause the media source
* - create/destroy data channel and send/receive data via the channel
* - get notified about various changes via callbacks
*
* @subsection CAPI_MEDIA_WEBRTC_LIFE_CYCLE_STATE_TRANSITIONS State Transitions
- * <div><table class="doxtable" >
+ * <div><table class="doxtable">
* <tr>
* <th><b>FUNCTION</b></th>
* <th><b>PRE-STATE</b></th>
*
* @subsection CAPI_MEDIA_WEBRTC_LIFE_CYCLE_CALLBACK_OPERATIONS Callback(Event) Operations
* The callback mechanism is used to notify the application about significant webrtc events.
- * <div><table class="doxtable" >
+ * <div><table class="doxtable">
* <tr>
* <th><b>REGISTER</b></th>
* <th><b>UNREGISTER</b></th>
* <td>webrtc_ice_connection_state_change_cb()</td>
* <td>This callback is used to notify that the WebRTC ICE connection state has changed</td>
* </tr>
- *</table></div>
+ * </table></div>
*
* @subsection CAPI_MEDIA_WEBRTC_FOREACH_OPERATIONS Foreach Operations
- * <div><table class="doxtable" >
+ * <div><table class="doxtable">
* <tr>
- * <th><b>FOREACH</b></th>
- * <th><b>CALLBACK</b></th>
- * <th><b>DESCRIPTION</b></th>
+ * <th><b>FOREACH</b></th>
+ * <th><b>CALLBACK</b></th>
+ * <th><b>DESCRIPTION</b></th>
* </tr>
* <tr>
- * <td>webrtc_foreach_turn_server()</td>
- * <td>webrtc_turn_server_cb()</td>
- * <td>It retrieves the added TURN server one by one</td>
+ * <td>webrtc_foreach_turn_server()</td>
+ * <td>webrtc_turn_server_cb()</td>
+ * <td>It retrieves the added TURN server one by one</td>
* </tr>
- *</table></div>
+ * </table></div>
*
* @section CAPI_MEDIA_WEBRTC_MODULE_FEATURE Related Features
* This API is related with the following features:\n
*
*/
+/**
+ * @ingroup CAPI_MEDIA_WEBRTC_MODULE
+ * @defgroup CAPI_MEDIA_WEBRTC_STATISTICS_MODULE Statistics
+ * @brief The @ref CAPI_MEDIA_WEBRTC_STATISTICS_MODULE API provides a function to retrieve all the statistics properties.
+ * @section CAPI_MEDIA_WEBRTC_STATISTICS_MODULE_HEADER Required Header
+ * \#include <webrtc.h>
+ *
+ * @section CAPI_MEDIA_WEBRTC_STATISTICS_MODULE_OVERVIEW Overview
+ * The WebRTC Statistics API provides a function to get statistics information to monitor the status of the underlying network and pipeline.
+ * You can get various properties for each statistics type as below.
+ * - WEBRTC_STATS_TYPE_CODEC is for a codec currently being used by RTP streams
+ * - WEBRTC_STATS_TYPE_INBOUND_RTP is for RTP stream currently received
+ * - WEBRTC_STATS_TYPE_OUTBOUND_RTP is for RTP stream currently sent
+ * - WEBRTC_STATS_TYPE_REMOTE_INBOUND_RTP is for the remote peer's inbound RTP stream corresponding to an outbound RTP stream
+ * - WEBRTC_STATS_TYPE_REMOTE_OUTBOUND_RTP is for the remote peer's outbound RTP stream corresponding to an inbound RTP stream
+ *
+ * @subsection CAPI_MEDIA_WEBRTC_STATISTICS_FOREACH_OPERATIONS Foreach Operations
+ * <div><table class="doxtable">
+ * <tr>
+ * <th><b>FOREACH</b></th>
+ * <th><b>CALLBACK</b></th>
+ * <th><b>DESCRIPTION</b></th>
+ * </tr>
+ * <tr>
+ * <td>webrtc_foreach_stats()</td>
+ * <td>webrtc_stats_cb()</td>
+ * <td>It retrieves all the statistics properties</td>
+ * </tr>
+ * </table></div>
+ *
+*/
+
#endif /* __TIZEN_MEDIA_WEBRTC_DOC_H__ */