mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-20 00:31:13 +00:00
flac: apparently on some platforms a FLAC__uint64!=guint64
This commit is contained in:
parent
f854836f5c
commit
f1fe1f52fd
1 changed files with 1 additions and 1 deletions
|
@ -669,7 +669,7 @@ gst_flac_dec_seek (const FLAC__StreamDecoder * decoder,
|
|||
|
||||
flacdec = GST_FLAC_DEC (client_data);
|
||||
|
||||
GST_DEBUG_OBJECT (flacdec, "seek %" G_GUINT64_FORMAT, position);
|
||||
GST_DEBUG_OBJECT (flacdec, "seek %" G_GUINT64_FORMAT, (guint64) position);
|
||||
flacdec->offset = position;
|
||||
|
||||
return FLAC__STREAM_DECODER_SEEK_STATUS_OK;
|
||||
|
|
Loading…
Reference in a new issue