From c7aa449e582d2c7bc8333b4c5ce3d7ae5b068d45 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tim-Philipp=20M=C3=BCller?= Date: Fri, 22 Aug 2014 09:55:43 +0100 Subject: [PATCH] qtdemux: demote some log messages to TRACE level Don't spam debug log with uninteresting stuff. --- gst/isomp4/qtdemux_dump.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/gst/isomp4/qtdemux_dump.c b/gst/isomp4/qtdemux_dump.c index 09c6f4239c..de378118e8 100644 --- a/gst/isomp4/qtdemux_dump.c +++ b/gst/isomp4/qtdemux_dump.c @@ -744,25 +744,25 @@ qtdemux_dump_trun (GstQTDemux * qtdemux, GstByteReader * data, int depth) if (flags & TR_SAMPLE_DURATION) { if (!gst_byte_reader_get_uint32_be (data, &sample_duration)) return FALSE; - GST_LOG ("%*s sample-duration: %u", depth, "", sample_duration); + GST_TRACE ("%*s sample-duration: %u", depth, "", sample_duration); } if (flags & TR_SAMPLE_SIZE) { if (!gst_byte_reader_get_uint32_be (data, &sample_size)) return FALSE; - GST_LOG ("%*s sample-size: %u", depth, "", sample_size); + GST_TRACE ("%*s sample-size: %u", depth, "", sample_size); } if (flags & TR_SAMPLE_FLAGS) { if (!gst_byte_reader_get_uint32_be (data, &sample_flags)) return FALSE; - GST_LOG ("%*s sample-flags: %u", depth, "", sample_flags); + GST_TRACE ("%*s sample-flags: %u", depth, "", sample_flags); } if (flags & TR_COMPOSITION_TIME_OFFSETS) { if (!gst_byte_reader_get_uint32_be (data, &composition_time_offsets)) return FALSE; - GST_LOG ("%*s composition_time_offsets: %u", depth, "", + GST_TRACE ("%*s composition_time_offsets: %u", depth, "", composition_time_offsets); } }