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:
Moritz Bunkus 2004-07-13 16:22:00 +00:00
parent bca059f826
commit bc10e8e2aa
2 changed files with 8 additions and 1 deletions

View File

@ -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

View File

@ -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