videoparsers: use appropriate printf format for gsize
This commit is contained in:
parent
35a5100bc3
commit
471ad809f6
@ -903,8 +903,8 @@ gst_vc1_parse_handle_frame (GstBaseParse * parse, GstBaseParseFrame * frame,
|
|||||||
g_assert (size >= 4);
|
g_assert (size >= 4);
|
||||||
memset (&bdu, 0, sizeof (bdu));
|
memset (&bdu, 0, sizeof (bdu));
|
||||||
GST_DEBUG_OBJECT (vc1parse,
|
GST_DEBUG_OBJECT (vc1parse,
|
||||||
"Handling buffer of size %u at offset %" G_GUINT64_FORMAT, size,
|
"Handling buffer of size %" G_GSIZE_FORMAT " at offset %"
|
||||||
GST_BUFFER_OFFSET (buffer));
|
G_GUINT64_FORMAT, size, GST_BUFFER_OFFSET (buffer));
|
||||||
/* XXX: when a buffer contains multiple BDUs, does the first one start with
|
/* XXX: when a buffer contains multiple BDUs, does the first one start with
|
||||||
* a startcode?
|
* a startcode?
|
||||||
*/
|
*/
|
||||||
@ -1188,7 +1188,8 @@ gst_vc1_parse_handle_frame (GstBaseParse * parse, GstBaseParseFrame * frame,
|
|||||||
|
|
||||||
gst_buffer_unmap (buffer, &minfo);
|
gst_buffer_unmap (buffer, &minfo);
|
||||||
memset (&minfo, 0, sizeof (minfo));
|
memset (&minfo, 0, sizeof (minfo));
|
||||||
GST_DEBUG_OBJECT (vc1parse, "Finishing frame of size %d", framesize);
|
GST_DEBUG_OBJECT (vc1parse, "Finishing frame of size %" G_GSIZE_FORMAT,
|
||||||
|
framesize);
|
||||||
ret = gst_base_parse_finish_frame (parse, frame, framesize);
|
ret = gst_base_parse_finish_frame (parse, frame, framesize);
|
||||||
|
|
||||||
done:
|
done:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user