mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-19 23:06:49 +00:00
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:
parent
cf66541850
commit
6c513a9d1e
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue