mirror of
https://gitlab.com/mbunkus/mkvtoolnix.git
synced 2024-12-28 22:05:03 +00:00
ostream operator for append_map_t for easier debugging
This commit is contained in:
parent
0001133ec1
commit
74a208e5bf
@ -237,6 +237,13 @@ family_uids_c::add_family_uid(const KaxSegmentFamily &family) {
|
||||
return true;
|
||||
}
|
||||
|
||||
std::ostream &
|
||||
operator<<(std::ostream &str,
|
||||
const append_spec_t &spec) {
|
||||
str << spec.src_file_id << ":" << spec.src_track_id << ":" << spec.dst_file_id << ":" << spec.dst_track_id;
|
||||
return str;
|
||||
}
|
||||
|
||||
/** \brief Fix the file after mkvmerge has been interrupted
|
||||
|
||||
On Unix like systems mkvmerge will install a signal handler. On \c SIGUSR1
|
||||
|
Loading…
Reference in New Issue
Block a user