Revision: 22826
http://xbmc.svn.sourceforge.net/xbmc/?rev=22826&view=rev
Author: spiff_
Date: 2009-09-09 00:22:52 +0000 (Wed, 09 Sep 2009)
Log Message:
-----------
fixed: playback of multi-track ogg files
Modified Paths:
--------------
branches/linuxport/XBMC/xbmc/cores/paplayer/OGGcodec.cpp
Modified: branches/linuxport/XBMC/xbmc/cores/paplayer/OGGcodec.cpp
===================================================================
--- branches/linuxport/XBMC/xbmc/cores/paplayer/OGGcodec.cpp 2009-09-09 00:19:12 UTC (rev 22825)
+++ branches/linuxport/XBMC/xbmc/cores/paplayer/OGGcodec.cpp 2009-09-09 00:22:52 UTC (rev 22826)
@@ -147,7 +147,8 @@
// Seek to the logical bitstream to play
if (m_TimeOffset>0.0)
{
- if (m_dll.ov_time_seek_page(&m_VorbisFile, m_TimeOffset)!=0)
+ int result;
+ if ((result =m_dll.ov_time_seek(&m_VorbisFile, m_TimeOffset))!=0)
{
CLog::Log(LOGERROR, "OGGCodec: Can't seek to the bitstream start time (%s)", strFile1.c_str());
return false;
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|