diff options
author | Miguel Freitas <miguelfreitas@users.sourceforge.net> | 2003-01-11 12:25:10 +0000 |
---|---|---|
committer | Miguel Freitas <miguelfreitas@users.sourceforge.net> | 2003-01-11 12:25:10 +0000 |
commit | 7b9330b8987615d53be79c1815d1bec6726d7d3c (patch) | |
tree | 950d8c3de1fddbae16ffc75cdf4f101e6b18573b | |
parent | a5e8c3817fa5546ffe6d177d375fdcf832bc0cad (diff) | |
download | xine-lib-7b9330b8987615d53be79c1815d1bec6726d7d3c.tar.gz xine-lib-7b9330b8987615d53be79c1815d1bec6726d7d3c.tar.bz2 |
allow 2 seconds prebuffering instead of a "sync" behaviour.
this will be important to support subtitling the same stream (that
is, demuxer provides both video and spu)
CVS patchset: 3870
CVS date: 2003/01/11 12:25:10
-rw-r--r-- | src/libsputext/xine_decoder.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libsputext/xine_decoder.c b/src/libsputext/xine_decoder.c index b7d5171ba..e824e1ea2 100644 --- a/src/libsputext/xine_decoder.c +++ b/src/libsputext/xine_decoder.c @@ -17,7 +17,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA * - * $Id: xine_decoder.c,v 1.44 2003/01/11 11:34:15 mroi Exp $ + * $Id: xine_decoder.c,v 1.45 2003/01/11 12:25:10 miguelfreitas Exp $ * */ @@ -237,7 +237,7 @@ static void spudec_decode_data (spu_decoder_t *this_gen, buf_element_t *buf) { } } - if( this->osd && this->last_subtitle_end < extra_info.vpts ) { + if( this->osd ) { /* try to use frame number mode */ if( !uses_time && extra_info.frame_number ) { |