[vlc-commits] mkv: fixed playback of certain files on 32bit Apple platforms

Felix Paul Kühne git at videolan.org
Tue Oct 16 16:59:28 CEST 2012


vlc | branch: master | Felix Paul Kühne <fkuehne at videolan.org> | Tue Oct 16 16:59:22 2012 +0200| [cc44bfb641eb0fed8f84631338f9563fb5bbff95] | committer: Felix Paul Kühne

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

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=cc44bfb641eb0fed8f84631338f9563fb5bbff95
---

 modules/demux/mkv/matroska_segment.cpp |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/modules/demux/mkv/matroska_segment.cpp b/modules/demux/mkv/matroska_segment.cpp
index b8e1803..17bfb11 100644
--- a/modules/demux/mkv/matroska_segment.cpp
+++ b/modules/demux/mkv/matroska_segment.cpp
@@ -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 */
     if( i_date == 0 && i_time_offset == 0 )
     {



More information about the vlc-commits mailing list