1
0
Fork 0
mirror of https://gitlab.gnome.org/GNOME/calls.git synced 2025-01-08 04:45:31 +00:00

sip: media-pipeline: Uncrustify struct members

This commit is contained in:
Evangelos Ribeiro Tzaras 2022-04-25 09:47:53 +02:00
parent ea5b4f2895
commit a14b6bfbf5

View file

@ -115,54 +115,54 @@ static uint signals[N_SIGNALS];
struct _CallsSipMediaPipeline { struct _CallsSipMediaPipeline {
GObject parent; GObject parent;
MediaCodecInfo *codec; MediaCodecInfo *codec;
gboolean debug; gboolean debug;
CallsMediaPipelineState state; CallsMediaPipelineState state;
uint element_map_playing; uint element_map_playing;
uint element_map_paused; uint element_map_paused;
uint element_map_stopped; uint element_map_stopped;
gboolean emitted_sending_signal; gboolean emitted_sending_signal;
/* Connection details */ /* Connection details */
char *remote; char *remote;
gint rport_rtp; gint rport_rtp;
gint rport_rtcp; gint rport_rtcp;
GstElement *pipeline; GstElement *pipeline;
GstElement *rtpbin; GstElement *rtpbin;
GstElement *rtp_src; GstElement *rtp_src;
GstElement *rtp_sink; GstElement *rtp_sink;
GstElement *rtcp_sink; GstElement *rtcp_sink;
GstElement *rtcp_src; GstElement *rtcp_src;
GstElement *audio_src; GstElement *audio_src;
GstElement *payloader; GstElement *payloader;
GstElement *encoder; GstElement *encoder;
GstElement *audio_sink; GstElement *audio_sink;
GstElement *depayloader; GstElement *depayloader;
GstElement *decoder; GstElement *decoder;
/* SRTP */ /* SRTP */
gboolean use_srtp; gboolean use_srtp;
calls_srtp_crypto_attribute *crypto_own; calls_srtp_crypto_attribute *crypto_own;
calls_srtp_crypto_attribute *crypto_theirs; calls_srtp_crypto_attribute *crypto_theirs;
GstElement *srtpenc; GstElement *srtpenc;
GstElement *srtpdec; GstElement *srtpdec;
gulong request_rtpbin_rtp_decoder_id; gulong request_rtpbin_rtp_decoder_id;
gulong request_rtpbin_rtp_encoder_id; gulong request_rtpbin_rtp_encoder_id;
gulong request_rtpbin_rtcp_encoder_id; gulong request_rtpbin_rtcp_encoder_id;
gulong request_rtpbin_rtcp_decoder_id; gulong request_rtpbin_rtcp_decoder_id;
/* Gstreamer busses */ /* Gstreamer busses */
GstBus *bus; GstBus *bus;
guint bus_watch_id; guint bus_watch_id;
}; };
#if GLIB_CHECK_VERSION (2, 70, 0) #if GLIB_CHECK_VERSION (2, 70, 0)