mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-25 11:11:08 +00:00
videodecoder: fix build error on i386
Use G_GUINT64_FORMAT for guint64 values.
Introduced by fcb63e77a9
Found by Alexander Larsson
gstvideodecoder.c: In function 'gst_video_decoder_have_frame':
gstvideodecoder.c:3312:51: error: format '%u' expects argument of type 'unsigned int', but argument 8 has type 'guint64 {aka long long unsigned int}' [-Werror=format=]
This commit is contained in:
parent
fb7d9e26ff
commit
d15b0f4844
1 changed files with 1 additions and 1 deletions
|
@ -3309,7 +3309,7 @@ gst_video_decoder_have_frame (GstVideoDecoder * decoder)
|
|||
guint flags;
|
||||
GstFlowReturn ret = GST_FLOW_OK;
|
||||
|
||||
GST_LOG_OBJECT (decoder, "have_frame at offset %" G_GSIZE_FORMAT,
|
||||
GST_LOG_OBJECT (decoder, "have_frame at offset %" G_GUINT64_FORMAT,
|
||||
priv->frame_offset);
|
||||
|
||||
GST_VIDEO_DECODER_STREAM_LOCK (decoder);
|
||||
|
|
Loading…
Reference in a new issue