mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-17 11:45:25 +00:00
mpegtsmux: Fix namespace of some internal functions
https://bugzilla.gnome.org/show_bug.cgi?id=733347
This commit is contained in:
parent
badc0438d6
commit
67d46d9934
1 changed files with 6 additions and 6 deletions
|
@ -167,7 +167,7 @@ static GstFlowReturn mpegtsmux_push_packets (MpegTsMux * mux, gboolean force);
|
||||||
static gboolean new_packet_m2ts (MpegTsMux * mux, GstBuffer * buf,
|
static gboolean new_packet_m2ts (MpegTsMux * mux, GstBuffer * buf,
|
||||||
gint64 new_pcr);
|
gint64 new_pcr);
|
||||||
|
|
||||||
static void mpegtsdemux_prepare_srcpad (MpegTsMux * mux);
|
static void mpegtsmux_prepare_srcpad (MpegTsMux * mux);
|
||||||
GstFlowReturn mpegtsmux_clip_inc_running_time (GstCollectPads * pads,
|
GstFlowReturn mpegtsmux_clip_inc_running_time (GstCollectPads * pads,
|
||||||
GstCollectData * cdata, GstBuffer * buf, GstBuffer ** outbuf,
|
GstCollectData * cdata, GstBuffer * buf, GstBuffer ** outbuf,
|
||||||
gpointer user_data);
|
gpointer user_data);
|
||||||
|
@ -182,7 +182,7 @@ static void mpegtsmux_release_pad (GstElement * element, GstPad * pad);
|
||||||
static GstStateChangeReturn mpegtsmux_change_state (GstElement * element,
|
static GstStateChangeReturn mpegtsmux_change_state (GstElement * element,
|
||||||
GstStateChange transition);
|
GstStateChange transition);
|
||||||
static gboolean mpegtsmux_send_event (GstElement * element, GstEvent * event);
|
static gboolean mpegtsmux_send_event (GstElement * element, GstEvent * event);
|
||||||
static void mpegtsdemux_set_header_on_caps (MpegTsMux * mux);
|
static void mpegtsmux_set_header_on_caps (MpegTsMux * mux);
|
||||||
static gboolean mpegtsmux_src_event (GstPad * pad, GstObject * parent,
|
static gboolean mpegtsmux_src_event (GstPad * pad, GstObject * parent,
|
||||||
GstEvent * event);
|
GstEvent * event);
|
||||||
|
|
||||||
|
@ -1105,7 +1105,7 @@ mpegtsmux_collected_buffer (GstCollectPads * pads, GstCollectData * data,
|
||||||
if (G_UNLIKELY (ret != GST_FLOW_OK))
|
if (G_UNLIKELY (ret != GST_FLOW_OK))
|
||||||
return ret;
|
return ret;
|
||||||
|
|
||||||
mpegtsdemux_prepare_srcpad (mux);
|
mpegtsmux_prepare_srcpad (mux);
|
||||||
|
|
||||||
mux->first = FALSE;
|
mux->first = FALSE;
|
||||||
}
|
}
|
||||||
|
@ -1343,7 +1343,7 @@ new_packet_common_init (MpegTsMux * mux, GstBuffer * buf, guint8 * data,
|
||||||
}
|
}
|
||||||
mux->streamheader = g_list_append (mux->streamheader, hbuf);
|
mux->streamheader = g_list_append (mux->streamheader, hbuf);
|
||||||
} else if (mux->streamheader) {
|
} else if (mux->streamheader) {
|
||||||
mpegtsdemux_set_header_on_caps (mux);
|
mpegtsmux_set_header_on_caps (mux);
|
||||||
mux->streamheader_sent = TRUE;
|
mux->streamheader_sent = TRUE;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1632,7 +1632,7 @@ alloc_packet_cb (GstBuffer ** _buf, void *user_data)
|
||||||
}
|
}
|
||||||
|
|
||||||
static void
|
static void
|
||||||
mpegtsdemux_set_header_on_caps (MpegTsMux * mux)
|
mpegtsmux_set_header_on_caps (MpegTsMux * mux)
|
||||||
{
|
{
|
||||||
GstBuffer *buf;
|
GstBuffer *buf;
|
||||||
GstStructure *structure;
|
GstStructure *structure;
|
||||||
|
@ -1666,7 +1666,7 @@ mpegtsdemux_set_header_on_caps (MpegTsMux * mux)
|
||||||
}
|
}
|
||||||
|
|
||||||
static void
|
static void
|
||||||
mpegtsdemux_prepare_srcpad (MpegTsMux * mux)
|
mpegtsmux_prepare_srcpad (MpegTsMux * mux)
|
||||||
{
|
{
|
||||||
GstSegment seg;
|
GstSegment seg;
|
||||||
/* we are not going to seek */
|
/* we are not going to seek */
|
||||||
|
|
Loading…
Reference in a new issue