summaryrefslogtreecommitdiffstats
path: root/mplayer.c
diff options
context:
space:
mode:
Diffstat (limited to 'mplayer.c')
-rw-r--r--mplayer.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/mplayer.c b/mplayer.c
index 640a36baa0..23f2c93a86 100644
--- a/mplayer.c
+++ b/mplayer.c
@@ -2220,13 +2220,13 @@ if(rel_seek_secs || abs_seek_pos){
if(len>=2){
int len2;
len2=(packet[0]<<8)+packet[1];
- mp_msg(MSGT_CPLAYER,MSGL_V,"\rDVD sub: %d / %d \n",len,len2);
- spudec_assemble(vo_spudec,packet,len,100*d_video->pts);
+ mp_msg(MSGT_CPLAYER,MSGL_V,"\rDVD sub: %d / %d v_pts=%5.3f s_pts=%5.3f \n",len,len2,d_video->pts,d_dvdsub->pts);
+ spudec_assemble(vo_spudec,packet,len,100*d_dvdsub->pts);
} else {
- spudec_heartbeat(vo_spudec,100*d_video->pts);
if(len>=0)
mp_msg(MSGT_CPLAYER,MSGL_V,"invalid dvd sub\n");
}
+ spudec_heartbeat(vo_spudec,100*d_video->pts);
current_module=NULL;
}
#endif