mirror of
https://gitlab.com/mbunkus/mkvtoolnix.git
synced 2024-12-24 11:54:01 +00:00
Add "vprp" to the list of known but unsupported tags. Otherwise "lasttag" will be reset and avilib does not "see" the additional OpenDML RIFF chunks.
This commit is contained in:
parent
bca059f826
commit
bc10e8e2aa
@ -1,3 +1,9 @@
|
||||
2004-07-13 Moritz Bunkus <moritz@bunkus.org>
|
||||
|
||||
* mkvmerge: bug fix: The latest OpenDML AVI files generated by
|
||||
mencoder were not read correctly. Only the first RIFF chunk was
|
||||
processed.
|
||||
|
||||
2004-07-10 Moritz Bunkus <moritz@bunkus.org>
|
||||
|
||||
* mkvmerge: If the user does not specify a --language for a track
|
||||
|
@ -2558,7 +2558,8 @@ int avi_parse_input_file(avi_t *AVI, int getIndex)
|
||||
i += 8;
|
||||
}
|
||||
else if((strncasecmp(hdrl_data+i,"JUNK",4) == 0) ||
|
||||
((strncasecmp(hdrl_data+i,"strn",4) == 0))){
|
||||
(strncasecmp(hdrl_data+i,"strn",4) == 0) ||
|
||||
(strncasecmp(hdrl_data+i,"vprp",4) == 0)){
|
||||
i += 8;
|
||||
// do not reset lasttag
|
||||
} else
|
||||
|
Loading…
Reference in New Issue
Block a user