Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
gst-plugins-bad
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
994
Issues
994
List
Boards
Labels
Service Desk
Milestones
Merge Requests
192
Merge Requests
192
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
GStreamer
gst-plugins-bad
Commits
39c8c206
Commit
39c8c206
authored
May 08, 2019
by
Niels De Graef
1
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
webrtc: Add g_autoptr() support for public types
parent
d2f6facb
Pipeline
#35748
passed with stages
in 35 minutes and 27 seconds
Changes
6
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
25 additions
and
0 deletions
+25
-0
gst-libs/gst/webrtc/dtlstransport.h
gst-libs/gst/webrtc/dtlstransport.h
+4
-0
gst-libs/gst/webrtc/icetransport.h
gst-libs/gst/webrtc/icetransport.h
+4
-0
gst-libs/gst/webrtc/rtcsessiondescription.h
gst-libs/gst/webrtc/rtcsessiondescription.h
+5
-0
gst-libs/gst/webrtc/rtpreceiver.h
gst-libs/gst/webrtc/rtpreceiver.h
+4
-0
gst-libs/gst/webrtc/rtpsender.h
gst-libs/gst/webrtc/rtpsender.h
+4
-0
gst-libs/gst/webrtc/rtptransceiver.h
gst-libs/gst/webrtc/rtptransceiver.h
+4
-0
No files found.
gst-libs/gst/webrtc/dtlstransport.h
View file @
39c8c206
...
...
@@ -65,6 +65,10 @@ GST_WEBRTC_API
void
gst_webrtc_dtls_transport_set_transport
(
GstWebRTCDTLSTransport
*
transport
,
GstWebRTCICETransport
*
ice
);
#ifdef G_DEFINE_AUTOPTR_CLEANUP_FUNC
G_DEFINE_AUTOPTR_CLEANUP_FUNC
(
GstWebRTCDTLSTransport
,
gst_object_unref
)
#endif
G_END_DECLS
#endif
/* __GST_WEBRTC_DTLS_TRANSPORT_H__ */
gst-libs/gst/webrtc/icetransport.h
View file @
39c8c206
...
...
@@ -71,6 +71,10 @@ void gst_webrtc_ice_transport_selected_pair_change (GstWebRTCIC
GST_WEBRTC_API
void
gst_webrtc_ice_transport_new_candidate
(
GstWebRTCICETransport
*
ice
,
guint
stream_id
,
GstWebRTCICEComponent
component
,
gchar
*
attr
);
#ifdef G_DEFINE_AUTOPTR_CLEANUP_FUNC
G_DEFINE_AUTOPTR_CLEANUP_FUNC
(
GstWebRTCICETransport
,
gst_object_unref
)
#endif
G_END_DECLS
#endif
/* __GST_WEBRTC_ICE_TRANSPORT_H__ */
gst-libs/gst/webrtc/rtcsessiondescription.h
View file @
39c8c206
...
...
@@ -53,6 +53,11 @@ GstWebRTCSessionDescription * gst_webrtc_session_description_copy (con
GST_WEBRTC_API
void
gst_webrtc_session_description_free
(
GstWebRTCSessionDescription
*
desc
);
#ifdef G_DEFINE_AUTOPTR_CLEANUP_FUNC
G_DEFINE_AUTOPTR_CLEANUP_FUNC
(
GstWebRTCSessionDescription
,
gst_webrtc_session_description_free
)
#endif
G_END_DECLS
#endif
/* __GST_WEBRTC_PEERCONNECTION_H__ */
gst-libs/gst/webrtc/rtpreceiver.h
View file @
39c8c206
...
...
@@ -62,6 +62,10 @@ GST_WEBRTC_API
void
gst_webrtc_rtp_receiver_set_rtcp_transport
(
GstWebRTCRTPReceiver
*
receiver
,
GstWebRTCDTLSTransport
*
transport
);
#ifdef G_DEFINE_AUTOPTR_CLEANUP_FUNC
G_DEFINE_AUTOPTR_CLEANUP_FUNC
(
GstWebRTCRTPReceiver
,
gst_object_unref
)
#endif
G_END_DECLS
#endif
/* __GST_WEBRTC_RTP_RECEIVER_H__ */
gst-libs/gst/webrtc/rtpsender.h
View file @
39c8c206
...
...
@@ -66,6 +66,10 @@ void gst_webrtc_rtp_sender_set_rtcp_transport (GstWebR
GstWebRTCDTLSTransport
*
transport
);
#ifdef G_DEFINE_AUTOPTR_CLEANUP_FUNC
G_DEFINE_AUTOPTR_CLEANUP_FUNC
(
GstWebRTCRTPSender
,
gst_object_unref
)
#endif
G_END_DECLS
#endif
/* __GST_WEBRTC_RTP_SENDER_H__ */
gst-libs/gst/webrtc/rtptransceiver.h
View file @
39c8c206
...
...
@@ -61,6 +61,10 @@ struct _GstWebRTCRTPTransceiverClass
gpointer
_padding
[
GST_PADDING
];
};
#ifdef G_DEFINE_AUTOPTR_CLEANUP_FUNC
G_DEFINE_AUTOPTR_CLEANUP_FUNC
(
GstWebRTCRTPTransceiver
,
gst_object_unref
)
#endif
G_END_DECLS
#endif
/* __GST_WEBRTC_RTP_TRANSCEIVER_H__ */
Tim-Philipp Müller
🐠
@tpm
mentioned in merge request
!551 (merged)
·
Aug 08, 2019
mentioned in merge request
!551 (merged)
mentioned in merge request !551
Toggle commit list
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment