diff options
author | Mark Nauwelaerts <mnauw@users.sourceforge.net> | 2013-11-10 12:15:33 +0100 |
---|---|---|
committer | Mark Nauwelaerts <mnauw@users.sourceforge.net> | 2013-11-11 13:36:02 +0100 |
commit | b57981d15baf749ae3812db734978c86d9e59891 (patch) | |
tree | 0d086957151f3f965f66c20f7548316ea51f598f /gst/mpegdemux | |
parent | 4930dc40cd8537e6004c9ec7c9f8467ee10284ad (diff) | |
download | gstreamer-plugins-bad-b57981d15baf749ae3812db734978c86d9e59891.tar.gz |
mpgegdemux: do not use pushed buffer in debug message
Diffstat (limited to 'gst/mpegdemux')
-rw-r--r-- | gst/mpegdemux/gstmpegdemux.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gst/mpegdemux/gstmpegdemux.c b/gst/mpegdemux/gstmpegdemux.c index f4806df62..42a2e1e48 100644 --- a/gst/mpegdemux/gstmpegdemux.c +++ b/gst/mpegdemux/gstmpegdemux.c @@ -661,11 +661,11 @@ gst_flups_demux_send_data (GstFluPSDemux * demux, GstFluPSStream * stream, demux->next_pts = 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); - GST_LOG_OBJECT (demux, "pushed stream id 0x%02x type 0x%02x, pts time: %" - 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)); + GST_LOG_OBJECT (demux, "result: %s", gst_flow_get_name (result)); return result; |