mirror of
https://gitlab.com/mbunkus/mkvtoolnix.git
synced 2024-12-24 11:54:01 +00:00
Erase the stored_name after each attached file so that the mkvmerge will not complain about multiple --attachment-name arguments for a single attachment.
This commit is contained in:
parent
be157d9fd3
commit
04b9c742e4
@ -1,5 +1,10 @@
|
|||||||
2005-11-18 Moritz Bunkus <moritz@bunkus.org>
|
2005-11-18 Moritz Bunkus <moritz@bunkus.org>
|
||||||
|
|
||||||
|
* mkvmerge: bug fix: If at least or more attachments were present
|
||||||
|
and the user used --attachment-name for each of them (as mmg does)
|
||||||
|
then mkvmerge was wrongly outputting a warning about multiple uses
|
||||||
|
of --attachment-name for a single attachment.
|
||||||
|
|
||||||
* mkvmerge: new feature: Added limited support for edit lists in
|
* mkvmerge: new feature: Added limited support for edit lists in
|
||||||
MP4/QuickTime files. Fixes Anthill bug #151.
|
MP4/QuickTime files. Fixes Anthill bug #151.
|
||||||
|
|
||||||
|
@ -105,6 +105,7 @@ struct attachment_t {
|
|||||||
}
|
}
|
||||||
void clear() {
|
void clear() {
|
||||||
name = "";
|
name = "";
|
||||||
|
stored_name = "";
|
||||||
mime_type = "";
|
mime_type = "";
|
||||||
description = "";
|
description = "";
|
||||||
id = 0;
|
id = 0;
|
||||||
|
Loading…
Reference in New Issue
Block a user