mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-23 10:11:08 +00:00
rademux: Print invalid fourcc in error message in hex
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=732716
This commit is contained in:
parent
cf0ea1eb37
commit
e593ae2db6
1 changed files with 1 additions and 2 deletions
|
@ -521,8 +521,7 @@ gst_real_audio_demux_parse_header (GstRealAudioDemux * demux)
|
|||
unknown_fourcc:
|
||||
{
|
||||
GST_ELEMENT_ERROR (GST_ELEMENT (demux), STREAM, DECODE, (NULL),
|
||||
("Unknown fourcc '%" GST_FOURCC_FORMAT "'",
|
||||
GST_FOURCC_ARGS (demux->fourcc)));
|
||||
("Unknown fourcc '0x%" G_GINT32_MODIFIER "x'", demux->fourcc));
|
||||
return GST_FLOW_ERROR;
|
||||
}
|
||||
broken_file:
|
||||
|
|
Loading…
Reference in a new issue