From 2c838498499f4d8d7626d0146dba6cd53f88a47e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Olivier=20Cr=C3=AAte?= Date: Wed, 18 Feb 2009 19:58:58 -0500 Subject: [PATCH] [MOVED FROM GST-P-FARSIGHT] Rename have_base to have_ts_base --- gst/rtpmux/gstrtpmux.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gst/rtpmux/gstrtpmux.c b/gst/rtpmux/gstrtpmux.c index dd8c6cd0bb..9bf5e051b2 100644 --- a/gst/rtpmux/gstrtpmux.c +++ b/gst/rtpmux/gstrtpmux.c @@ -65,7 +65,7 @@ enum #define DEFAULT_SSRC -1 typedef struct { - gboolean have_base; + gboolean have_ts_base; guint clock_base; } GstRTPMuxPadPrivate; @@ -347,7 +347,7 @@ gst_rtp_mux_readjust_rtp_timestamp (GstRTPMux * rtp_mux, GstPad * pad, guint32 sink_ts_base = 0; GstRTPMuxPadPrivate *padpriv = gst_pad_get_element_private (pad); - if (padpriv->have_base) + if (padpriv->have_ts_base) sink_ts_base = padpriv->clock_base; ts = gst_rtp_buffer_get_timestamp (buffer) - sink_ts_base + rtp_mux->ts_base; @@ -410,7 +410,7 @@ gst_rtp_mux_setcaps (GstPad *pad, GstCaps *caps) goto out; if (gst_structure_get_uint (structure, "clock-base", &padpriv->clock_base)) { - padpriv->have_base = TRUE; + padpriv->have_ts_base = TRUE; } caps = gst_caps_copy (caps);