summaryrefslogtreecommitdiffstats
path: root/mplayer.c
diff options
context:
space:
mode:
authoralex <alex@b3059339-0415-0410-9bf9-f77b7e298cf2>2003-06-02 18:19:21 +0000
committeralex <alex@b3059339-0415-0410-9bf9-f77b7e298cf2>2003-06-02 18:19:21 +0000
commit0f70e5e7783d8676825417d5e459be508998929b (patch)
tree997b280132c62d62296de782b2505815c1c66e78 /mplayer.c
parent342a37ab8c92e4ea2823fbd90ebc989db203482d (diff)
downloadmpv-0f70e5e7783d8676825417d5e459be508998929b.tar.bz2
mpv-0f70e5e7783d8676825417d5e459be508998929b.tar.xz
10l
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@10241 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'mplayer.c')
-rw-r--r--mplayer.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/mplayer.c b/mplayer.c
index b59623df28..68945038f5 100644
--- a/mplayer.c
+++ b/mplayer.c
@@ -3426,11 +3426,11 @@ if (stop_xscreensaver && sh_video) {
// DVD sub:
if(vo_config_count && vo_spudec) {
unsigned char* packet=NULL;
- int len=1,timestamp;
+ int len,timestamp;
current_module="spudec";
spudec_heartbeat(vo_spudec,90000*sh_video->timer);
// Get a sub packet from the dvd or a vobsub and make a timestamp relative to sh_video->timer
- while(len>0 && packet){
+ while(1) {
// Vobsub
len = 0;
if(vo_vobsub) {
@@ -3450,6 +3450,7 @@ if(vo_config_count && vo_spudec) {
mp_dbg(MSGT_CPLAYER,MSGL_V,"\rDVD sub: len=%d v_pts=%5.3f s_pts=%5.3f ts=%d \n",len,sh_video->pts,d_dvdsub->pts,timestamp);
}
}
+ if(len<=0 || !packet) break;
if(timestamp < 0) timestamp = 0;
spudec_assemble(vo_spudec,packet,len,timestamp);
}