diff options
author | Xavier Claessens <xavier.claessens@collabora.com> | 2015-03-06 12:07:47 -0500 |
---|---|---|
committer | Olivier CrĂȘte <olivier.crete@collabora.com> | 2015-03-06 13:46:48 -0500 |
commit | 92028e5da0f5acf986fb631ed30936ca87cfb0de (patch) | |
tree | eed73ba555770808baf8d8eceda0cef155f15c9b | |
parent | 938d172fc2ad1159b63a6e05e191c97d26d1afcc (diff) |
pngparse: stop spamming info messages
https://bugzilla.gnome.org/show_bug.cgi?id=745755
-rw-r--r-- | gst/videoparsers/gstpngparse.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gst/videoparsers/gstpngparse.c b/gst/videoparsers/gstpngparse.c index c4dbe3cf5..d266bd344 100644 --- a/gst/videoparsers/gstpngparse.c +++ b/gst/videoparsers/gstpngparse.c @@ -175,7 +175,7 @@ gst_png_parse_handle_frame (GstBaseParse * parse, if (!gst_byte_reader_get_uint32_le (&reader, &code)) goto beach; - GST_INFO_OBJECT (parse, "%" GST_FOURCC_FORMAT " chunk, %u bytes", + GST_TRACE_OBJECT (parse, "%" GST_FOURCC_FORMAT " chunk, %u bytes", GST_FOURCC_ARGS (code), length); if (code == GST_MAKE_FOURCC ('I', 'H', 'D', 'R')) { |