mirror of
https://gitlab.com/mbunkus/mkvtoolnix.git
synced 2024-12-24 20:01:53 +00:00
Ignore RM tracks with unknown MIME types.
This commit is contained in:
parent
b24c4fab9e
commit
7c3415bef0
@ -1,3 +1,8 @@
|
||||
2004-04-11 Moritz Bunkus <moritz@bunkus.org>
|
||||
|
||||
* mkvmerge: bug fix: Fixed the handling of RealMedia files with
|
||||
'multirate' tracks (again).
|
||||
|
||||
2004-04-09 Moritz Bunkus <moritz@bunkus.org>
|
||||
|
||||
* mkvmerge: bug fix: On some rare occasions chapters were not
|
||||
|
@ -147,8 +147,8 @@ real_reader_c::parse_headers() {
|
||||
!demuxing_requested('a', track->id))
|
||||
continue;
|
||||
if ((track->mdpr_header.mime_type == NULL) ||
|
||||
(!strcmp(track->mdpr_header.mime_type, "audio/x-pn-realaudio") &&
|
||||
!strcmp(track->mdpr_header.mime_type, "video/x-pn-realvideo")))
|
||||
(strcmp(track->mdpr_header.mime_type, "audio/x-pn-realaudio") &&
|
||||
strcmp(track->mdpr_header.mime_type, "video/x-pn-realvideo")))
|
||||
continue;
|
||||
|
||||
ts_data = track->mdpr_header.type_specific_data;
|
||||
|
Loading…
Reference in New Issue
Block a user