mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-20 00:31:13 +00:00
mpgegdemux: do not use pushed buffer in debug message
This commit is contained in:
parent
4930dc40cd
commit
b57981d15b
1 changed files with 4 additions and 4 deletions
|
@ -661,11 +661,11 @@ gst_flups_demux_send_data (GstFluPSDemux * demux, GstFluPSStream * stream,
|
||||||
demux->next_pts = G_MAXUINT64;
|
demux->next_pts = G_MAXUINT64;
|
||||||
demux->next_dts = G_MAXUINT64;
|
demux->next_dts = G_MAXUINT64;
|
||||||
|
|
||||||
|
GST_LOG_OBJECT (demux, "pushing stream id 0x%02x type 0x%02x, pts time: %"
|
||||||
|
GST_TIME_FORMAT ", size %" G_GSIZE_FORMAT,
|
||||||
|
stream->id, stream->type, GST_TIME_ARGS (pts), gst_buffer_get_size (buf));
|
||||||
stream->last_flow = result = gst_pad_push (stream->pad, buf);
|
stream->last_flow = result = gst_pad_push (stream->pad, buf);
|
||||||
GST_LOG_OBJECT (demux, "pushed stream id 0x%02x type 0x%02x, pts time: %"
|
GST_LOG_OBJECT (demux, "result: %s", gst_flow_get_name (result));
|
||||||
GST_TIME_FORMAT ", size %" G_GSIZE_FORMAT ". result: %s",
|
|
||||||
stream->id, stream->type, GST_TIME_ARGS (pts),
|
|
||||||
gst_buffer_get_size (buf), gst_flow_get_name (result));
|
|
||||||
|
|
||||||
return result;
|
return result;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue