diff --git a/gst-libs/gst/webrtc/webrtc-priv.h b/gst-libs/gst/webrtc/webrtc-priv.h index 203f852fa1..cf8a081c2c 100644 --- a/gst-libs/gst/webrtc/webrtc-priv.h +++ b/gst-libs/gst/webrtc/webrtc-priv.h @@ -49,8 +49,6 @@ G_BEGIN_DECLS * @kind: Type of media (Since: 1.20) * * Mostly matches the WebRTC RTCRtpTransceiver interface. - * - * Since: 1.16 */ /** * GstWebRTCRTPTransceiver.kind: @@ -95,8 +93,6 @@ struct _GstWebRTCRTPTransceiverClass * An object to track the sending aspect of the stream * * Mostly matches the WebRTC RTCRtpSender interface. - * - * Since: 1.16 */ /** * GstWebRTCRTPSender.priority: @@ -135,8 +131,6 @@ GstWebRTCRTPSender * gst_webrtc_rtp_sender_new (void); * An object to track the receiving aspect of the stream * * Mostly matches the WebRTC RTCRtpReceiver interface. - * - * Since: 1.16 */ struct _GstWebRTCRTPReceiver { diff --git a/gst-libs/gst/webrtc/webrtc_fwd.h b/gst-libs/gst/webrtc/webrtc_fwd.h index 87d5f98d5e..f3f9aebb81 100644 --- a/gst-libs/gst/webrtc/webrtc_fwd.h +++ b/gst-libs/gst/webrtc/webrtc_fwd.h @@ -42,23 +42,53 @@ #include +/** + * GstWebRTCDTLSTransport: + */ typedef struct _GstWebRTCDTLSTransport GstWebRTCDTLSTransport; typedef struct _GstWebRTCDTLSTransportClass GstWebRTCDTLSTransportClass; +/** + * GstWebRTCICETransport: + */ typedef struct _GstWebRTCICETransport GstWebRTCICETransport; typedef struct _GstWebRTCICETransportClass GstWebRTCICETransportClass; +/** + * GstWebRTCRTPReceiver: + * + * An object to track the receiving aspect of the stream + * + * Mostly matches the WebRTC RTCRtpReceiver interface. + */ typedef struct _GstWebRTCRTPReceiver GstWebRTCRTPReceiver; typedef struct _GstWebRTCRTPReceiverClass GstWebRTCRTPReceiverClass; +/** + * GstWebRTCRTPSender: + * + * An object to track the sending aspect of the stream + * + * Mostly matches the WebRTC RTCRtpSender interface. + */ typedef struct _GstWebRTCRTPSender GstWebRTCRTPSender; typedef struct _GstWebRTCRTPSenderClass GstWebRTCRTPSenderClass; typedef struct _GstWebRTCSessionDescription GstWebRTCSessionDescription; +/** + * GstWebRTCRTPTransceiver: + * + * Mostly matches the WebRTC RTCRtpTransceiver interface. + */ typedef struct _GstWebRTCRTPTransceiver GstWebRTCRTPTransceiver; typedef struct _GstWebRTCRTPTransceiverClass GstWebRTCRTPTransceiverClass; +/** + * GstWebRTCDataChannel: + * + * Since: 1.18 + */ typedef struct _GstWebRTCDataChannel GstWebRTCDataChannel; typedef struct _GstWebRTCDataChannelClass GstWebRTCDataChannelClass;