summaryrefslogtreecommitdiff
path: root/ext
diff options
context:
space:
mode:
authorArnaud Vrac <avrac@freebox.fr>2016-10-10 16:52:58 +0200
committerTim-Philipp Müller <tim@centricular.com>2016-10-11 09:48:54 +0100
commite2dea99dc95d99f7f84ec7b82c486f420163d0e6 (patch)
tree727cdb630c91285714fc69246121989e20f1b889 /ext
parent7dd42aee5b7dd0a83acfeae28aea3e8b723e1aa2 (diff)
downloadgstreamer-plugins-bad-e2dea99dc95d99f7f84ec7b82c486f420163d0e6.tar.gz
hlsdemux: fix hls demux stream type inheritance
GstHLSDemuxStream inherits GstAdaptiveDemuxStream, not GstAdaptiveDemux. Fixes memory corruption issues. https://bugzilla.gnome.org/show_bug.cgi?id=772704
Diffstat (limited to 'ext')
-rw-r--r--ext/hls/gsthlsdemux.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/hls/gsthlsdemux.h b/ext/hls/gsthlsdemux.h
index 3b6a4c08e..f2bc238c5 100644
--- a/ext/hls/gsthlsdemux.h
+++ b/ext/hls/gsthlsdemux.h
@@ -83,7 +83,7 @@ struct _GstHLSTSReader
struct _GstHLSDemuxStream
{
- GstAdaptiveDemux adaptive_demux_stream;
+ GstAdaptiveDemuxStream adaptive_demux_stream;
GstHLSTSReaderType stream_type;