mirror of
https://github.com/SubtitleEdit/subtitleedit.git
synced 2024-11-21 18:52:36 +01:00
commit
30ba6afdba
@ -520,10 +520,10 @@ namespace Nikse.SubtitleEdit.Core.ContainerFormats.Matroska
|
||||
}
|
||||
}
|
||||
|
||||
private string GetChapterName(Element ChapterDisplay)
|
||||
private string GetChapterName(Element chapterDisplay)
|
||||
{
|
||||
Element element;
|
||||
while (_stream.Position < ChapterDisplay.EndPosition && (element = ReadElement()) != null)
|
||||
while (_stream.Position < chapterDisplay.EndPosition && (element = ReadElement()) != null)
|
||||
{
|
||||
if (element.Id == ElementId.ChapString)
|
||||
{
|
||||
@ -671,11 +671,7 @@ namespace Nikse.SubtitleEdit.Core.ContainerFormats.Matroska
|
||||
return _subtitleRip;
|
||||
}
|
||||
|
||||
public void Dispose()
|
||||
{
|
||||
Dispose(true);
|
||||
GC.SuppressFinalize(this);
|
||||
}
|
||||
public void Dispose() => Dispose(true);
|
||||
|
||||
private void Dispose(bool disposing)
|
||||
{
|
||||
@ -686,7 +682,6 @@ namespace Nikse.SubtitleEdit.Core.ContainerFormats.Matroska
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
private void ReadSegmentInfoAndTracks()
|
||||
{
|
||||
// go to segment
|
||||
|
Loading…
Reference in New Issue
Block a user