Commit df2ac736 authored by Sébastien Toque's avatar Sébastien Toque Committed by Jean-Baptiste Kempf

MKV: workaround the seeking-to-0 issue also on android

Signed-off-by: default avatarJean-Baptiste Kempf <jb@videolan.org>
parent d737d568
...@@ -732,7 +732,7 @@ void matroska_segment_c::Seek( mtime_t i_date, mtime_t i_time_offset, int64_t i_ ...@@ -732,7 +732,7 @@ void matroska_segment_c::Seek( mtime_t i_date, mtime_t i_time_offset, int64_t i_
} }
} }
#ifndef WIN32 #if !defined(WIN32) && !defined(__ANDROID__)
/* Don't try complex seek if we seek to 0 */ /* Don't try complex seek if we seek to 0 */
if( i_date == 0 ) if( i_date == 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