From: ghost Date: Thu, 11 Jun 2009 22:18:44 +0000 (+0200) Subject: lib/service/servicedvb.cpp: immediate show ttx subtitles instead of skip them when... X-Git-Tag: 2.6.0~247^2 X-Git-Url: https://git.cweiske.de/enigma2.git/commitdiff_plain/2d03f14ca12ee50e2dac8b97b1a54e681dc86cef lib/service/servicedvb.cpp: immediate show ttx subtitles instead of skip them when pts difference is to big also immediate show ttx subtitles without pts in pes packet --- diff --git a/lib/service/servicedvb.cpp b/lib/service/servicedvb.cpp index a57a813b..c97980fd 100644 --- a/lib/service/servicedvb.cpp +++ b/lib/service/servicedvb.cpp @@ -2825,6 +2825,11 @@ void eDVBServicePlay::checkSubtitleTiming() eDebug("%lld %lld", pos, show_time); int diff = show_time - pos; + if (type == TELETEXT && !page.m_have_pts) + { + eDebug("ttx subtitle page without pts... immediate show"); + diff = 0; + } if (diff < 0) { eDebug("[late (%d ms)]", -diff / 90); @@ -2832,14 +2837,9 @@ void eDVBServicePlay::checkSubtitleTiming() } if (abs(diff) > 1800000) { - eDebug("skip [invalid]"); - if (type == TELETEXT) - m_subtitle_pages.pop_front(); - else - m_dvb_subtitle_pages.pop_front(); - continue; + eDebug("[invalid]... immediate show!"); + diff = 0; } - if ((diff/90)<20) { if (type == TELETEXT)