demux_mkv: remove incorrect error message about compression

The demuxer still printed a message about "unknown/unsupported
compression algorithm (3)" even though that is now supported and in
fact played fine.
This commit is contained in:
Uoti Urpala 2010-01-28 17:17:54 +02:00
parent 42244dd2a4
commit 4a3de78aae
1 changed files with 1 additions and 1 deletions

View File

@ -488,7 +488,7 @@ static void parse_trackencodings(struct demuxer *demuxer,
"[mkv] Unknown content encoding type for "
"track %u. Skipping track.\n",
track->tnum);
} else if (e.comp_algo != 0 && e.comp_algo != 2) {
} else if (e.comp_algo != 0 && e.comp_algo != 2 && e.comp_algo != 3) {
mp_tmsg(MSGT_DEMUX, MSGL_WARN,
"[mkv] Track %u has been compressed with "
"an unknown/unsupported compression\n"