mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-24 10:41:04 +00:00
matroska: Store subtitle stream count in the correct variable
And don't override the video stream count instead.
This commit is contained in:
parent
4917515342
commit
910d75ddaf
1 changed files with 1 additions and 1 deletions
|
@ -2194,7 +2194,7 @@ gst_matroska_read_common_count_streams (GstMatroskaReadCommon * common,
|
||||||
}
|
}
|
||||||
*v = video_streams;
|
*v = video_streams;
|
||||||
*a = audio_streams;
|
*a = audio_streams;
|
||||||
*v = subtitle_streams;
|
*s = subtitle_streams;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue