matroska: Store subtitle stream count in the correct variable

And don't override the video stream count instead.
This commit is contained in:
Steven Hoving 2016-01-07 18:20:30 +02:00 committed by Sebastian Dröge
parent 4917515342
commit 910d75ddaf

View file

@ -2194,7 +2194,7 @@ gst_matroska_read_common_count_streams (GstMatroskaReadCommon * common,
}
*v = video_streams;
*a = audio_streams;
*v = subtitle_streams;
*s = subtitle_streams;
}