diff options
| author | ghost <andreas.monzner@multimedia-labs.de> | 2009-09-03 11:27:18 +0200 |
|---|---|---|
| committer | ghost <andreas.monzner@multimedia-labs.de> | 2009-09-03 11:27:18 +0200 |
| commit | 884a9bb30ff4a4715e96207269d149c304ecfc1d (patch) | |
| tree | 5035ac62eccc2741465d219af7516dfe25cc606b | |
| parent | ffb0dd9e6ec7741b62a6f382000a237bde12e561 (diff) | |
| download | enigma2-884a9bb30ff4a4715e96207269d149c304ecfc1d.tar.gz enigma2-884a9bb30ff4a4715e96207269d149c304ecfc1d.zip | |
fix srt subtitles
| -rw-r--r-- | lib/service/servicemp3.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/service/servicemp3.cpp b/lib/service/servicemp3.cpp index 149a1906..7d5901e2 100644 --- a/lib/service/servicemp3.cpp +++ b/lib/service/servicemp3.cpp @@ -497,6 +497,8 @@ RESULT eServiceMP3::seekTo(pts_t to) if (!m_gst_playbin) return -1; + eSingleLocker l(m_subs_to_pull_lock); // this is needed to dont handle incomming subtitles during seek! + /* convert pts to nanoseconds */ gint64 time_nanoseconds = to * 11111LL; if (!gst_element_seek (m_gst_playbin, 1.0, GST_FORMAT_TIME, GST_SEEK_FLAG_FLUSH, @@ -508,7 +510,6 @@ RESULT eServiceMP3::seekTo(pts_t to) } m_subtitle_pages.clear(); - eSingleLocker l(m_subs_to_pull_lock); m_subs_to_pull = 0; return 0; |
