mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-17 03:35:21 +00:00
qtdemux: improve debug logging of fourccs
If we can't show ASCII, at least show them in big endian order.
This commit is contained in:
parent
f41d03cd4d
commit
e8321af983
1 changed files with 2 additions and 2 deletions
|
@ -11094,7 +11094,7 @@ qtdemux_audio_caps (GstQTDemux * qtdemux, QtDemuxStream * stream,
|
|||
const gchar *name;
|
||||
gint endian = 0;
|
||||
|
||||
GST_DEBUG_OBJECT (qtdemux, "resolve fourcc %08x", fourcc);
|
||||
GST_DEBUG_OBJECT (qtdemux, "resolve fourcc 0x%08x", GUINT32_TO_BE (fourcc));
|
||||
|
||||
switch (fourcc) {
|
||||
case GST_MAKE_FOURCC ('N', 'O', 'N', 'E'):
|
||||
|
@ -11385,7 +11385,7 @@ qtdemux_sub_caps (GstQTDemux * qtdemux, QtDemuxStream * stream,
|
|||
{
|
||||
GstCaps *caps;
|
||||
|
||||
GST_DEBUG_OBJECT (qtdemux, "resolve fourcc %08x", fourcc);
|
||||
GST_DEBUG_OBJECT (qtdemux, "resolve fourcc 0x%08x", GUINT32_TO_BE (fourcc));
|
||||
|
||||
switch (fourcc) {
|
||||
case GST_MAKE_FOURCC ('m', 'p', '4', 's'):
|
||||
|
|
Loading…
Reference in a new issue