avidemux, wavparse: Print invalid fourcc in hex
authorSebastian Rasmussen <sebras@hotmail.com>
Fri, 4 Jul 2014 01:21:30 +0000 (03:21 +0200)
committerTim-Philipp Müller <tim@centricular.com>
Fri, 4 Jul 2014 08:21:07 +0000 (09:21 +0100)
Previously this was printed as characters which caused later processing
of the error message to sometimes warn about non-UTF-8 characters.

Fixes https://bugzilla.gnome.org/show_bug.cgi?id=732714

gst/avi/gstavidemux.c
gst/wavparse/gstwavparse.c

index c84ffce..23e1437 100644 (file)
@@ -1072,8 +1072,7 @@ gst_avi_demux_parse_file_header (GstElement * element, GstBuffer * buf)
 not_avi:
   {
     GST_ELEMENT_ERROR (element, STREAM, WRONG_TYPE, (NULL),
-        ("File is not an AVI file: %" GST_FOURCC_FORMAT,
-            GST_FOURCC_ARGS (doctype)));
+        ("File is not an AVI file: 0x%" G_GINT32_MODIFIER "x", doctype));
     return FALSE;
   }
 }
index 167e4ba..28d2063 100644 (file)
@@ -303,8 +303,7 @@ gst_wavparse_parse_file_header (GstElement * element, GstBuffer * buf)
 not_wav:
   {
     GST_ELEMENT_ERROR (element, STREAM, WRONG_TYPE, (NULL),
-        ("File is not a WAVE file: %" GST_FOURCC_FORMAT,
-            GST_FOURCC_ARGS (doctype)));
+        ("File is not a WAVE file: 0x%" G_GINT32_MODIFIER "x", doctype));
     return FALSE;
   }
 }