mirror of
https://gitlab.com/mbunkus/mkvtoolnix.git
synced 2024-12-24 20:01:53 +00:00
librmff stored tracks as pointers now, not as full structs anymore.
This commit is contained in:
parent
616c961cf9
commit
58dabe561e
@ -146,7 +146,7 @@ real_reader_c::parse_headers() {
|
||||
|
||||
if (rmff_read_headers(file) == RMFF_ERR_OK) {
|
||||
for (ndx = 0; ndx < file->num_tracks; ndx++) {
|
||||
track = &file->tracks[ndx];
|
||||
track = file->tracks[ndx];
|
||||
if ((track->type == RMFF_TRACK_TYPE_UNKNOWN) ||
|
||||
(get_uint32_be(&track->mdpr_header.type_specific_size) == 0))
|
||||
continue;
|
||||
|
Loading…
Reference in New Issue
Block a user