From 9a8a8e72c8680140ab75832ab49aa5fb0f301aac Mon Sep 17 00:00:00 2001 From: Wim Taymans Date: Sat, 29 Oct 2011 09:09:45 +0200 Subject: [PATCH] structure: fix for api update --- ext/pulse/pulsesink.c | 4 ++-- gst/rtp/gstrtph264pay.c | 2 +- gst/rtp/gstrtptheoradepay.c | 4 ++-- gst/rtpmanager/gstrtpsession.c | 2 +- gst/rtpmanager/rtpsession.c | 2 +- gst/rtpmanager/rtpsource.c | 2 +- gst/rtsp/gstrtspsrc.c | 2 +- sys/v4l2/gstv4l2object.c | 12 ++++++------ 8 files changed, 15 insertions(+), 15 deletions(-) diff --git a/ext/pulse/pulsesink.c b/ext/pulse/pulsesink.c index d7b76400d4..8b964f781f 100644 --- a/ext/pulse/pulsesink.c +++ b/ext/pulse/pulsesink.c @@ -437,7 +437,7 @@ gst_pulsering_context_subscribe_cb (pa_context * c, GST_INFO_OBJECT (psink, "emitting sink-changed"); renego = gst_event_new_custom (GST_EVENT_CUSTOM_UPSTREAM, - gst_structure_empty_new ("pulse-sink-changed")); + gst_structure_new_empty ("pulse-sink-changed")); if (!gst_pad_push_event (GST_BASE_SINK (psink)->sinkpad, renego)) GST_DEBUG_OBJECT (psink, "Emitted sink-changed - nobody was listening"); @@ -755,7 +755,7 @@ gst_pulsering_stream_event_cb (pa_stream * p, const char *name, psink->device = g_strdup (pa_proplist_gets (pl, "device")); renego = gst_event_new_custom (GST_EVENT_CUSTOM_UPSTREAM, - gst_structure_empty_new ("pulse-format-lost")); + gst_structure_new_empty ("pulse-format-lost")); if (!gst_pad_push_event (GST_BASE_SINK (psink)->sinkpad, renego)) { /* Nobody handled the format change - emit an error */ diff --git a/gst/rtp/gstrtph264pay.c b/gst/rtp/gstrtph264pay.c index 00eff48679..8ee8bf8b6c 100644 --- a/gst/rtp/gstrtph264pay.c +++ b/gst/rtp/gstrtph264pay.c @@ -288,7 +288,7 @@ gst_rtp_h264_pay_getcaps (GstBaseRTPPayload * payload, GstPad * pad, for (i = 0; i < gst_caps_get_size (allowed_caps); i++) { GstStructure *s = gst_caps_get_structure (allowed_caps, i); - GstStructure *new_s = gst_structure_empty_new ("video/x-h264"); + GstStructure *new_s = gst_structure_new_empty ("video/x-h264"); const gchar *profile_level_id; profile_level_id = gst_structure_get_string (s, "profile-level-id"); diff --git a/gst/rtp/gstrtptheoradepay.c b/gst/rtp/gstrtptheoradepay.c index 6ddcd7d6f8..a4b98ed8b4 100644 --- a/gst/rtp/gstrtptheoradepay.c +++ b/gst/rtp/gstrtptheoradepay.c @@ -645,7 +645,7 @@ request_keyframe: rtptheoradepay->needs_keyframe = TRUE; gst_pad_push_event (GST_BASE_RTP_DEPAYLOAD_SINKPAD (depayload), gst_event_new_custom (GST_EVENT_CUSTOM_UPSTREAM, - gst_structure_empty_new ("GstForceKeyUnit"))); + gst_structure_new_empty ("GstForceKeyUnit"))); gst_rtp_buffer_unmap (&rtp); return NULL; } @@ -672,7 +672,7 @@ gst_rtp_theora_depay_packet_lost (GstBaseRTPDepayload * depayload, gst_pad_push_event (GST_BASE_RTP_DEPAYLOAD_SINKPAD (depayload), gst_event_new_custom (GST_EVENT_CUSTOM_UPSTREAM, - gst_structure_empty_new ("GstForceKeyUnit"))); + gst_structure_new_empty ("GstForceKeyUnit"))); return TRUE; } diff --git a/gst/rtpmanager/gstrtpsession.c b/gst/rtpmanager/gstrtpsession.c index 963f0892c8..9dc9c777ee 100644 --- a/gst/rtpmanager/gstrtpsession.c +++ b/gst/rtpmanager/gstrtpsession.c @@ -1750,7 +1750,7 @@ gst_rtp_session_getcaps_send_rtp (GstPad * pad, GstCaps * filter) * internal SSRC so that we don't have to patch it. Create a structure with * the SSRC and another one without. */ s1 = gst_structure_new ("application/x-rtp", "ssrc", G_TYPE_UINT, ssrc, NULL); - s2 = gst_structure_empty_new ("application/x-rtp"); + s2 = gst_structure_new_empty ("application/x-rtp"); result = gst_caps_new_full (s1, s2, NULL); diff --git a/gst/rtpmanager/rtpsession.c b/gst/rtpmanager/rtpsession.c index ecbe44bcda..1ac18a7fe5 100644 --- a/gst/rtpmanager/rtpsession.c +++ b/gst/rtpmanager/rtpsession.c @@ -2009,7 +2009,7 @@ rtp_session_process_sdes (RTPSession * sess, GstRTCPPacket * packet, if (!source) return; - sdes = gst_structure_empty_new ("application/x-rtp-source-sdes"); + sdes = gst_structure_new_empty ("application/x-rtp-source-sdes"); more_entries = gst_rtcp_packet_sdes_first_entry (packet); j = 0; diff --git a/gst/rtpmanager/rtpsource.c b/gst/rtpmanager/rtpsource.c index 6158c1033a..720ad18b6a 100644 --- a/gst/rtpmanager/rtpsource.c +++ b/gst/rtpmanager/rtpsource.c @@ -230,7 +230,7 @@ rtp_source_init (RTPSource * src) src->probation = RTP_DEFAULT_PROBATION; src->closing = FALSE; - src->sdes = gst_structure_empty_new ("application/x-rtp-source-sdes"); + src->sdes = gst_structure_new_empty ("application/x-rtp-source-sdes"); src->payload = -1; src->clock_rate = -1; diff --git a/gst/rtsp/gstrtspsrc.c b/gst/rtsp/gstrtspsrc.c index 7373b6237d..d31a186fce 100644 --- a/gst/rtsp/gstrtspsrc.c +++ b/gst/rtsp/gstrtspsrc.c @@ -5423,7 +5423,7 @@ gst_rtspsrc_open_from_sdp (GstRTSPSrc * src, GstSDPMessage * sdp, if (src->props) gst_structure_remove_all_fields (src->props); else - src->props = gst_structure_empty_new ("RTSPProperties"); + src->props = gst_structure_new_empty ("RTSPProperties"); if (src->debug) gst_sdp_message_dump (sdp); diff --git a/sys/v4l2/gstv4l2object.c b/sys/v4l2/gstv4l2object.c index ac494b847c..1fa8e7c9bb 100644 --- a/sys/v4l2/gstv4l2object.c +++ b/sys/v4l2/gstv4l2object.c @@ -1185,7 +1185,7 @@ gst_v4l2_object_v4l2fourcc_to_structure (guint32 fourcc) case V4L2_PIX_FMT_PJPG: /* Progressive-JPEG */ #endif case V4L2_PIX_FMT_JPEG: /* JFIF JPEG */ - structure = gst_structure_empty_new ("image/jpeg"); + structure = gst_structure_new_empty ("image/jpeg"); break; case V4L2_PIX_FMT_YYUV: /* 16 YUV 4:2:2 */ case V4L2_PIX_FMT_HI240: /* 8 8-bit color */ @@ -1297,28 +1297,28 @@ gst_v4l2_object_v4l2fourcc_to_structure (guint32 fourcc) NULL); break; case V4L2_PIX_FMT_MPEG: /* MPEG */ - structure = gst_structure_empty_new ("video/mpegts"); + structure = gst_structure_new_empty ("video/mpegts"); break; case V4L2_PIX_FMT_WNVA: /* Winnov hw compres */ break; #ifdef V4L2_PIX_FMT_SBGGR8 case V4L2_PIX_FMT_SBGGR8: - structure = gst_structure_empty_new ("video/x-raw-bayer"); + structure = gst_structure_new_empty ("video/x-raw-bayer"); break; #endif #ifdef V4L2_PIX_FMT_SN9C10X case V4L2_PIX_FMT_SN9C10X: - structure = gst_structure_empty_new ("video/x-sonix"); + structure = gst_structure_new_empty ("video/x-sonix"); break; #endif #ifdef V4L2_PIX_FMT_PWC1 case V4L2_PIX_FMT_PWC1: - structure = gst_structure_empty_new ("video/x-pwc1"); + structure = gst_structure_new_empty ("video/x-pwc1"); break; #endif #ifdef V4L2_PIX_FMT_PWC2 case V4L2_PIX_FMT_PWC2: - structure = gst_structure_empty_new ("video/x-pwc2"); + structure = gst_structure_new_empty ("video/x-pwc2"); break; #endif default: