Commit cc44bfb6 authored by Felix Paul Kühne's avatar Felix Paul Kühne

mkv: fixed playback of certain files on 32bit Apple platforms

parent 64de31cb
...@@ -830,7 +830,7 @@ void matroska_segment_c::Seek( mtime_t i_date, mtime_t i_time_offset, int64_t i_ ...@@ -830,7 +830,7 @@ void matroska_segment_c::Seek( mtime_t i_date, mtime_t i_time_offset, int64_t i_
} }
} }
#if !defined(WIN32) && !defined(__ANDROID__) #if !defined(WIN32) && !defined(__ANDROID__) && !defined(__APPLE__)
/* Don't try complex seek if we seek to 0 */ /* Don't try complex seek if we seek to 0 */
if( i_date == 0 && i_time_offset == 0 ) if( i_date == 0 && i_time_offset == 0 )
{ {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment