diff options
author | mosu <mosu@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2003-05-11 19:11:10 +0000 |
---|---|---|
committer | mosu <mosu@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2003-05-11 19:11:10 +0000 |
commit | 86aa9469153dad521a4bbc3535b16e7fa1fe33fc (patch) | |
tree | dd732056426164c3c76e85c0fa7c8aea63f1f499 /libmpdemux | |
parent | 362b1a98bde508817f779cf7f514a2f8f27998e0 (diff) |
Check with the wrong variable.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@10099 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libmpdemux')
-rw-r--r-- | libmpdemux/demux_mkv.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libmpdemux/demux_mkv.cpp b/libmpdemux/demux_mkv.cpp index 2d92a0e8de..879c4e726e 100644 --- a/libmpdemux/demux_mkv.cpp +++ b/libmpdemux/demux_mkv.cpp @@ -442,7 +442,7 @@ static int check_track_information(mkv_demuxer_t *d) { } u = get_uint16(&wfe->wBitsPerSample); - if (t->a_channels != u) { + if (t->a_bps != u) { mp_msg(MSGT_DEMUX, MSGL_WARN, "[mkv] WARNING: (MS " "compatibility mode for track %u) " "Matroska says that there are %u bits per sample, " |