Put a space between various element names and the value's hex dump again

Fix for bug 683.
This commit is contained in:
Moritz Bunkus 2011-12-13 21:59:30 +01:00
parent 81ec505672
commit c90f1e049d
14 changed files with 12691 additions and 12700 deletions

View File

@ -1,3 +1,9 @@
2011-12-13 Moritz Bunkus <moritz@bunkus.org>
* mkvinfo: bug fix: Various elements used to have a space between
their names and their value's hex dump. In v5.1.0 that space was
accentally removed. It has been added again. Fix for bug 583.
2011-12-12 Moritz Bunkus <moritz@bunkus.org>
* mkvmerge: bug fix: Turn off input file buffering for badly

2117
po/de.po

File diff suppressed because it is too large Load Diff

2113
po/es.po

File diff suppressed because it is too large Load Diff

2115
po/fr.po

File diff suppressed because it is too large Load Diff

2117
po/it.po

File diff suppressed because it is too large Load Diff

2108
po/ja.po

File diff suppressed because it is too large Load Diff

2116
po/lt.po

File diff suppressed because it is too large Load Diff

2117
po/nl.po

File diff suppressed because it is too large Load Diff

2115
po/ru.po

File diff suppressed because it is too large Load Diff

2109
po/tr.po

File diff suppressed because it is too large Load Diff

2114
po/uk.po

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -551,18 +551,18 @@ handle_info(EbmlStream *&es,
} else if (is_id(l2, KaxSegmentUID)) {
KaxSegmentUID &uid = *static_cast<KaxSegmentUID *>(l2);
show_element(l2, 2, boost::format(Y("Segment UID:%1%")) % to_hex(uid.GetBuffer(), uid.GetSize()));
show_element(l2, 2, boost::format(Y("Segment UID: %1%")) % to_hex(uid.GetBuffer(), uid.GetSize()));
} else if (is_id(l2, KaxSegmentFamily)) {
KaxSegmentFamily &family = *static_cast<KaxSegmentFamily *>(l2);
show_element(l2, 2, boost::format(Y("Family UID:%1%")) % to_hex(family.GetBuffer(), family.GetSize()));
show_element(l2, 2, boost::format(Y("Family UID: %1%")) % to_hex(family.GetBuffer(), family.GetSize()));
} else if (is_id(l2, KaxChapterTranslate))
handle_chaptertranslate(es, l2, l3);
else if (is_id(l2, KaxPrevUID)) {
KaxPrevUID &uid = *static_cast<KaxPrevUID *>(l2);
show_element(l2, 2, boost::format(Y("Previous segment UID:%1%")) % to_hex(uid.GetBuffer(), uid.GetSize()));
show_element(l2, 2, boost::format(Y("Previous segment UID: %1%")) % to_hex(uid.GetBuffer(), uid.GetSize()));
} else if (is_id(l2, KaxPrevFilename)) {
KaxPrevFilename &filename = *static_cast<KaxPrevFilename *>(l2);
@ -570,7 +570,7 @@ handle_info(EbmlStream *&es,
} else if (is_id(l2, KaxNextUID)) {
KaxNextUID &uid = *static_cast<KaxNextUID *>(l2);
show_element(l2, 2, boost::format(Y("Next segment UID:%1%")) % to_hex(uid.GetBuffer(), uid.GetSize()));
show_element(l2, 2, boost::format(Y("Next segment UID: %1%")) % to_hex(uid.GetBuffer(), uid.GetSize()));
} else if (is_id(l2, KaxNextFilename)) {
KaxNextFilename &filename = *static_cast<KaxNextFilename *>(l2);
@ -1127,7 +1127,7 @@ handle_seek_head(EbmlStream *&es,
EbmlId id(seek_id.GetBuffer(), seek_id.GetSize());
show_element(l3, 3,
boost::format(Y("Seek ID:%1% (%2%)"))
boost::format(Y("Seek ID: %1% (%2%)"))
% to_hex(seek_id.GetBuffer(), seek_id.GetSize())
% ( EBML_ID(KaxInfo) == id ? "KaxInfo"
: EBML_ID(KaxCluster) == id ? "KaxCluster"