1
mirror of https://github.com/mpv-player/mpv synced 2025-01-16 22:37:28 +01:00

some debug messages

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@1617 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
arpi 2001-08-21 22:20:41 +00:00
parent 26377b3326
commit d499642e02

4
open.c
View File

@ -278,6 +278,8 @@ if(dvd_title){
static int dvd_next_cell(dvd_priv_t *d){
int next_cell=d->cur_cell;
mp_msg(MSGT_DVD,MSGL_V, "dvd_next_cell: next1=0x%X \n",next_cell);
if( d->cur_pgc->cell_playback[ next_cell ].block_type
== BLOCK_TYPE_ANGLE_BLOCK ) {
@ -288,6 +290,7 @@ static int dvd_next_cell(dvd_priv_t *d){
++next_cell;
}
}
mp_msg(MSGT_DVD,MSGL_V, "dvd_next_cell: next2=0x%X \n",next_cell);
++next_cell;
if(next_cell>=d->cur_pgc->nr_of_cells) return -1; // EOF
@ -295,6 +298,7 @@ static int dvd_next_cell(dvd_priv_t *d){
next_cell+=dvd_angle;
if(next_cell>=d->cur_pgc->nr_of_cells) return -1; // EOF
}
mp_msg(MSGT_DVD,MSGL_V, "dvd_next_cell: next3=0x%X \n",next_cell);
return next_cell;
}