hlsdemux: use correct variable type

gst_buffer_resize needs gssize and not gsize. This makes gdb
print it correctly when debugging.
This commit is contained in:
Thiago Santos 2015-04-22 19:04:43 -03:00
parent cf66541850
commit 6c513a9d1e

View file

@ -563,7 +563,7 @@ gst_hls_demux_finish_fragment (GstAdaptiveDemux * demux,
if (stream->last_ret == GST_FLOW_OK) {
if (hlsdemux->pending_buffer) {
GstMapInfo info;
gsize unpadded_size;
gssize unpadded_size;
/* Handle pkcs7 unpadding here */
gst_buffer_map (hlsdemux->pending_buffer, &info, GST_MAP_READ);