mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-23 18:21:04 +00:00
libs: Fix build error on MinGW where "%ll" is not available
"ll" isn't available on MinGW. We can use G_GINT64_MODIFIER for portable 64bit size data modifier. https://bugzilla.gnome.org/show_bug.cgi?id=754630
This commit is contained in:
parent
181845ec1b
commit
3e41e784be
1 changed files with 1 additions and 1 deletions
|
@ -413,7 +413,7 @@ gst_video_dither_new (GstVideoDitherMethod method, GstVideoDitherFlags flags,
|
|||
}
|
||||
dither->orc_mask64 = GUINT64_FROM_BE (dither->orc_mask64);
|
||||
dither->orc_mask32 = GUINT32_FROM_BE (dither->orc_mask32);
|
||||
GST_DEBUG ("mask64 %08llx", (unsigned long long int) dither->orc_mask64);
|
||||
GST_DEBUG ("mask64 %08" G_GINT64_MODIFIER "x", (guint64) dither->orc_mask64);
|
||||
GST_DEBUG ("mask32 %08x", dither->orc_mask32);
|
||||
|
||||
switch (method) {
|
||||
|
|
Loading…
Reference in a new issue