changeset 1616:a3b4579e3806

some debug messages
author arpi
date Tue, 21 Aug 2001 22:20:41 +0000
parents 4e4eb37a4b76
children 9e73b71b0cfa
files open.c
diffstat 1 files changed, 4 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/open.c	Tue Aug 21 22:15:19 2001 +0000
+++ b/open.c	Tue Aug 21 22:20:41 2001 +0000
@@ -278,6 +278,8 @@
 
 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 @@
 		++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 @@
 	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;
 }