mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-19 06:46:38 +00:00
qtdemux: use G_GSIZE_FORMAT for platform independent gsize qualifier
Fixes build on macosx
This commit is contained in:
parent
59224d77f8
commit
3f5add8820
1 changed files with 2 additions and 1 deletions
|
@ -4156,7 +4156,8 @@ qtdemux_stbl_init (GstQTDemux * qtdemux, QtDemuxStream * stream, GNode * stbl)
|
|||
return FALSE;
|
||||
}
|
||||
|
||||
GST_DEBUG_OBJECT (qtdemux, "allocating n_samples %u * %d = (%u MB)",
|
||||
GST_DEBUG_OBJECT (qtdemux,
|
||||
"allocating n_samples %u * %" G_GSIZE_FORMAT " = (%u MB)",
|
||||
stream->n_samples, sizeof (QtDemuxSample),
|
||||
(guint) (stream->n_samples * sizeof (QtDemuxSample)) >> 20);
|
||||
|
||||
|
|
Loading…
Reference in a new issue