libextractor

GNU libextractor
Log | Files | Refs | Submodules | README | LICENSE

commit 7f6f48305b481b208a2bc2ca9395c77f8204e039
parent 0c424a169c3417c9b7fecbd4efc06b20f43f2001
Author: Christian Grothoff <christian@grothoff.org>
Date:   Wed, 26 Jun 2013 09:46:44 +0000

-fix #2903 -- plugins must not write to stdout

Diffstat:
Msrc/plugins/gstreamer_extractor.c | 3---
1 file changed, 0 insertions(+), 3 deletions(-)

diff --git a/src/plugins/gstreamer_extractor.c b/src/plugins/gstreamer_extractor.c @@ -1078,7 +1078,6 @@ send_structure_foreach (GQuark field_id, /* This is a potential source of invalid characters */ /* And it also might attempt to serialize binary data - such as images. */ str = gst_value_serialize (value); - g_print ("Will not try to serialize structure field %s (%s) = %s\n", field_name, type_name, str); g_free (str); str = NULL; break; @@ -1732,7 +1731,6 @@ send_toc_tags_foreach (const GstTagList * tags, /* This is a potential source of invalid characters */ /* And it also might attempt to serialize binary data - such as images. */ str = gst_value_serialize (&val); - g_print ("Will not try to serialize tag %s (%s) = %s\n", tag, type_name, str); g_free (str); str = NULL; break; @@ -2040,7 +2038,6 @@ EXTRACTOR_gstreamer_extract_method (struct EXTRACTOR_ExtractContext *ec) ps.dc = gst_discoverer_new (8 * GST_SECOND, &err); if (NULL == ps.dc) { - g_print ("Error initializing: %s\n", err->message); if (NULL != err) g_error_free (err); return;