mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 04:01:08 +00:00
theoraenc: do not use %zu, it is C99
Cast the variables instead and fallback to %u
This commit is contained in:
parent
772e3d514d
commit
81b914a61f
1 changed files with 2 additions and 2 deletions
|
@ -851,8 +851,8 @@ theora_enc_buffer_from_header_packet (GstTheoraEnc * enc, ogg_packet * packet)
|
|||
GST_BUFFER_TIMESTAMP (outbuf) = GST_CLOCK_TIME_NONE;
|
||||
GST_BUFFER_DURATION (outbuf) = GST_CLOCK_TIME_NONE;
|
||||
|
||||
GST_DEBUG ("created header packet buffer, %zu bytes",
|
||||
gst_buffer_get_size (outbuf));
|
||||
GST_DEBUG ("created header packet buffer, %u bytes",
|
||||
(guint) gst_buffer_get_size (outbuf));
|
||||
return outbuf;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue