flvmux: Assume PTS is DTS when PTS is missing

This fixes issue for encoders that only sets the DTS. We assume that
there was no re-ordering when that happens.

https://bugzilla.gnome.org/show_bug.cgi?id=762207
This commit is contained in:
Nicolas Dufresne 2016-06-08 11:24:37 -04:00
parent 6beadb9062
commit ad9e9bedfb

View file

@ -152,6 +152,20 @@ _gst_buffer_new_and_alloc (gsize size, GstBuffer ** buffer, guint8 ** data)
*buffer = _gst_buffer_new_wrapped (*data, size, g_free); *buffer = _gst_buffer_new_wrapped (*data, size, g_free);
} }
static GstFlowReturn
gst_flv_mux_clip_running_time (GstCollectPads * pads,
GstCollectData * cdata, GstBuffer * buf, GstBuffer ** outbuf,
gpointer user_data)
{
buf = gst_buffer_make_writable (buf);
if (!GST_CLOCK_TIME_IS_VALID (GST_BUFFER_PTS (buf)))
GST_BUFFER_PTS (buf) = GST_BUFFER_DTS (buf);
return gst_collect_pads_clip_running_time (pads, cdata, buf, outbuf,
user_data);
}
static void static void
gst_flv_mux_class_init (GstFlvMuxClass * klass) gst_flv_mux_class_init (GstFlvMuxClass * klass)
{ {
@ -217,7 +231,7 @@ gst_flv_mux_init (GstFlvMux * mux)
gst_collect_pads_set_event_function (mux->collect, gst_collect_pads_set_event_function (mux->collect,
GST_DEBUG_FUNCPTR (gst_flv_mux_handle_sink_event), mux); GST_DEBUG_FUNCPTR (gst_flv_mux_handle_sink_event), mux);
gst_collect_pads_set_clip_function (mux->collect, gst_collect_pads_set_clip_function (mux->collect,
GST_DEBUG_FUNCPTR (gst_collect_pads_clip_running_time), mux); GST_DEBUG_FUNCPTR (gst_flv_mux_clip_running_time), mux);
gst_flv_mux_reset (GST_ELEMENT (mux)); gst_flv_mux_reset (GST_ELEMENT (mux));
} }