mirror of
https://gitlab.com/mbunkus/mkvtoolnix.git
synced 2025-01-04 09:15:05 +00:00
fix the infinite size detection for a Cluster
This commit is contained in:
parent
8555988809
commit
d73ef6f9a1
@ -1901,7 +1901,7 @@ process_file(const std::string &file_name) {
|
||||
}
|
||||
|
||||
if (is_id(l0, KaxSegment)) {
|
||||
if (l0->GetSize() == -1)
|
||||
if (!l0->IsFiniteSize())
|
||||
show_element(l0, 0, Y("Segment, size unknown"));
|
||||
else
|
||||
show_element(l0, 0, boost::format(Y("Segment, size %1%")) % l0->GetSize());
|
||||
|
Loading…
Reference in New Issue
Block a user