WEBRTC_ERROR_STREAM_FAILED = TIZEN_ERROR_MEDIA_WEBRTC | 0x03, /**< Stream failed */
WEBRTC_ERROR_RESOURCE_FAILED = TIZEN_ERROR_MEDIA_WEBRTC | 0x04, /**< Resource failed */
WEBRTC_ERROR_RESOURCE_CONFLICT = TIZEN_ERROR_MEDIA_WEBRTC | 0x05, /**< Resource conflict */
- WEBRTC_ERROR_NETWORK_RESOURCE_FAILED = TIZEN_ERROR_MEDIA_WEBRTC | 0x06, /**< Network resource failed (Since 7.5) */
+ WEBRTC_ERROR_NETWORK_RESOURCE_FAILED = TIZEN_ERROR_MEDIA_WEBRTC | 0x06, /**< Network resource failed (Since 8.0) */
} webrtc_error_e;
/**
WEBRTC_STATS_TYPE_OUTBOUND_RTP = 0x0004, /**< Outbound RTP */
WEBRTC_STATS_TYPE_REMOTE_INBOUND_RTP = 0x0008, /**< Remote inbound RTP */
WEBRTC_STATS_TYPE_REMOTE_OUTBOUND_RTP = 0x0010, /**< Remote outbound RTP */
- WEBRTC_STATS_TYPE_CANDIDATE_PAIR = 0x0020, /**< Candidate pair (Since 7.5) */
- WEBRTC_STATS_TYPE_LOCAL_CANDIDATE = 0x0040, /**< Local candidate (Since 7.5) */
- WEBRTC_STATS_TYPE_REMOTE_CANDIDATE = 0x0080, /**< Remote candidate (Since 7.5) */
+ WEBRTC_STATS_TYPE_CANDIDATE_PAIR = 0x0020, /**< Candidate pair (Since 8.0) */
+ WEBRTC_STATS_TYPE_LOCAL_CANDIDATE = 0x0040, /**< Local candidate (Since 8.0) */
+ WEBRTC_STATS_TYPE_REMOTE_CANDIDATE = 0x0080, /**< Remote candidate (Since 8.0) */
} webrtc_stats_type_e;
/**
#define WEBRTC_STATS_TYPE_ALL 0
/**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
* @brief Definition for mask value used by #webrtc_stats_prop_e that represents properties of RTC stats.
* @since_tizen 7.0
* @remarks It corresponds with the values described in https://www.w3.org/TR/webrtc-stats/#dom-rtcstats.
#define WEBRTC_STATS_COMMON 0x00000100
/**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
* @brief Definition for mask value used by #webrtc_stats_prop_e that represents properties of RTC codec stats.
* @since_tizen 7.0
* @remarks It corresponds with the values described in https://www.w3.org/TR/webrtc-stats/#dom-rtccodecstats.
#define WEBRTC_STATS_CODEC 0x00000200
/**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
* @brief Definition for mask value used by #webrtc_stats_prop_e that represents properties of RTC RTP stream stats.
* @since_tizen 7.0
* @remarks It corresponds with the values described in https://www.w3.org/TR/webrtc-stats/#dom-rtcrtpstreamstats.
#define WEBRTC_STATS_RTP_STREAM 0x00000400
/**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
* @brief Definition for mask value used by #webrtc_stats_prop_e that represents properties of RTC received RTP stream stats.
* @since_tizen 7.0
* @remarks It corresponds with the values described in https://www.w3.org/TR/webrtc-stats/#dom-rtcreceivedrtpstreamstats.
#define WEBRTC_STATS_RECEIVED_RTP_STREAM 0x00000800
/**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
* @brief Definition for mask value used by #webrtc_stats_prop_e that represents properties of RTC inbound RTP stream stats.
* @since_tizen 7.0
* @remarks It corresponds with the values described in https://www.w3.org/TR/webrtc-stats/#dom-rtcinboundrtpstreamstats.
#define WEBRTC_STATS_INBOUND_RTP_STREAM 0x00001000
/**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
* @brief Definition for mask value used by #webrtc_stats_prop_e that represents properties of RTC sent RTP stream stats.
* @since_tizen 7.0
* @remarks It corresponds with the values described in https://www.w3.org/TR/webrtc-stats/#dom-rtcsentrtpstreamstats.
#define WEBRTC_STATS_SENT_RTP_STREAM 0x00002000
/**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
* @brief Definition for mask value used by #webrtc_stats_prop_e that represents properties of RTC outbound RTP stream stats.
* @since_tizen 7.0
* @remarks It corresponds with the values described in https://www.w3.org/TR/webrtc-stats/#dom-rtcoutboundrtpstreamstats.
#define WEBRTC_STATS_OUTBOUND_RTP_STREAM 0x00004000
/**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
* @brief Definition for mask value used by #webrtc_stats_prop_e that represents properties of RTC remote inbound RTP stream stats.
* @since_tizen 7.0
* @remarks It corresponds with the values described in https://www.w3.org/TR/webrtc-stats/#dom-rtcremoteinboundrtpstreamstats.
#define WEBRTC_STATS_REMOTE_INBOUND_RTP_STREAM 0x00008000
/**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
* @brief Definition for mask value used by #webrtc_stats_prop_e that represents properties of RTC remote outbound RTP stream stats.
* @since_tizen 7.0
* @remarks It corresponds with the values described in https://www.w3.org/TR/webrtc-stats/#dom-rtcremoteoutboundrtpstreamstats.
WEBRTC_STATS_PROP_FRACTION_LOST, /**< Fraction lost */
WEBRTC_STATS_PROP_REMOTE_TIMESTAMP, /**< Remote timestamp */
WEBRTC_STATS_PROP_LOCAL_ID, /**< Local id */
- WEBRTC_STATS_PROP_KIND, /**< Kind (Since 7.5) */
- WEBRTC_STATS_PROP_ADDRESS, /**< Address of the candidate (Since 7.5) */
- WEBRTC_STATS_PROP_PORT, /**< Port number of the candidate (Since 7.5) */
- WEBRTC_STATS_PROP_CANDIDATE_TYPE, /**< Candidate type (Since 7.5) */
- WEBRTC_STATS_PROP_PRIORITY, /**< Priority (Since 7.5) */
- WEBRTC_STATS_PROP_PROTOCOL, /**< Protocol, 'udp' or 'tcp' (Since 7.5) */
- WEBRTC_STATS_PROP_RELAY_PROTOCOL, /**< Relay protocol (Since 7.5) */
- WEBRTC_STATS_PROP_URL, /**< URL (Since 7.5) */
- WEBRTC_STATS_PROP_LOCAL_CANDIDATE_ID, /**< Local candidate id associated with the candidate pair (Since 7.5) */
- WEBRTC_STATS_PROP_REMOTE_CANDIDATE_ID, /**< Remote candidate id associated with the candidate pair (Since 7.5) */
+ WEBRTC_STATS_PROP_KIND, /**< Kind (Since 8.0) */
+ WEBRTC_STATS_PROP_ADDRESS, /**< Address of the candidate (Since 8.0) */
+ WEBRTC_STATS_PROP_PORT, /**< Port number of the candidate (Since 8.0) */
+ WEBRTC_STATS_PROP_CANDIDATE_TYPE, /**< Candidate type (Since 8.0) */
+ WEBRTC_STATS_PROP_PRIORITY, /**< Priority (Since 8.0) */
+ WEBRTC_STATS_PROP_PROTOCOL, /**< Protocol, 'udp' or 'tcp' (Since 8.0) */
+ WEBRTC_STATS_PROP_RELAY_PROTOCOL, /**< Relay protocol (Since 8.0) */
+ WEBRTC_STATS_PROP_URL, /**< URL (Since 8.0) */
+ WEBRTC_STATS_PROP_LOCAL_CANDIDATE_ID, /**< Local candidate id associated with the candidate pair (Since 8.0) */
+ WEBRTC_STATS_PROP_REMOTE_CANDIDATE_ID, /**< Remote candidate id associated with the candidate pair (Since 8.0) */
} webrtc_stats_prop_e;
/**
* #WEBRTC_ERROR_STREAM_FAILED\n
* #WEBRTC_ERROR_RESOURCE_FAILED\n
* #WEBRTC_ERROR_RESOURCE_CONFLICT\n
- * #WEBRTC_ERROR_NETWORK_RESOURCE_FAILED (Since 7.5)
+ * #WEBRTC_ERROR_NETWORK_RESOURCE_FAILED (Since 8.0)
* @since_tizen 6.5
* @remarks The @a webrtc is the same object for which the callback was set.\n
* The @a webrtc should not be released.