From 6c513a9d1e524af9992040d3ade1050b14ad5927 Mon Sep 17 00:00:00 2001 From: Thiago Santos Date: Wed, 22 Apr 2015 19:04:43 -0300 Subject: [PATCH] hlsdemux: use correct variable type gst_buffer_resize needs gssize and not gsize. This makes gdb print it correctly when debugging. --- ext/hls/gsthlsdemux.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/hls/gsthlsdemux.c b/ext/hls/gsthlsdemux.c index ab4df35..1b2655e 100644 --- a/ext/hls/gsthlsdemux.c +++ b/ext/hls/gsthlsdemux.c @@ -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); -- 2.7.4