libde265: Fix format string for gsize

https://bugzilla.gnome.org/show_bug.cgi?id=748496
This commit is contained in:
Руслан Ижбулатов 2015-04-26 21:00:06 +00:00 committed by Nicolas Dufresne
parent 5b22a126fe
commit 283fc200c6

View file

@ -601,8 +601,8 @@ gst_libde265_dec_set_format (GstVideoDecoder * decoder,
int nal_count; int nal_count;
if (pos + 3 > size) { if (pos + 3 > size) {
GST_ELEMENT_ERROR (decoder, STREAM, DECODE, GST_ELEMENT_ERROR (decoder, STREAM, DECODE,
("Buffer underrun in extra header (%d >= %ld)", pos + 3, ("Buffer underrun in extra header (%d >= %" G_GSIZE_FORMAT
size), (NULL)); ")", pos + 3, size), (NULL));
return FALSE; return FALSE;
} }
/* ignore flags + NAL type (1 byte) */ /* ignore flags + NAL type (1 byte) */
@ -612,14 +612,14 @@ gst_libde265_dec_set_format (GstVideoDecoder * decoder,
int nal_size; int nal_size;
if (pos + 2 > size) { if (pos + 2 > size) {
GST_ELEMENT_ERROR (decoder, STREAM, DECODE, GST_ELEMENT_ERROR (decoder, STREAM, DECODE,
("Buffer underrun in extra nal header (%d >= %ld)", pos + 2, ("Buffer underrun in extra nal header (%d >= %"
size), (NULL)); G_GSIZE_FORMAT ")", pos + 2, size), (NULL));
return FALSE; return FALSE;
} }
nal_size = data[pos] << 8 | data[pos + 1]; nal_size = data[pos] << 8 | data[pos + 1];
if (pos + 2 + nal_size > size) { if (pos + 2 + nal_size > size) {
GST_ELEMENT_ERROR (decoder, STREAM, DECODE, GST_ELEMENT_ERROR (decoder, STREAM, DECODE,
("Buffer underrun in extra nal (%d >= %ld)", ("Buffer underrun in extra nal (%d >= %" G_GSIZE_FORMAT ")",
pos + 2 + nal_size, size), (NULL)); pos + 2 + nal_size, size), (NULL));
return FALSE; return FALSE;
} }