projects
/
platform
/
upstream
/
gst-plugins-good.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
f41d03c
)
qtdemux: improve debug logging of fourccs
author
Tim-Philipp Müller
<tim@centricular.com>
Sat, 9 Aug 2014 19:47:30 +0000
(20:47 +0100)
committer
Tim-Philipp Müller
<tim@centricular.com>
Sat, 9 Aug 2014 19:50:01 +0000
(20:50 +0100)
If we can't show ASCII, at least show them
in big endian order.
gst/isomp4/qtdemux.c
patch
|
blob
|
history
diff --git
a/gst/isomp4/qtdemux.c
b/gst/isomp4/qtdemux.c
index
b40db4b
..
0096857
100644
(file)
--- a/
gst/isomp4/qtdemux.c
+++ b/
gst/isomp4/qtdemux.c
@@
-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'):