[Mplayer-cvslog] CVS: main open.c,1.8,1.9

Arpi of Ize arpi at mplayer.dev.hu
Wed Aug 22 00:20:44 CEST 2001


Update of /cvsroot/mplayer/main
In directory mplayer:/var/tmp.root/cvs-serv6362

Modified Files:
	open.c 
Log Message:
some debug messages

Index: open.c
===================================================================
RCS file: /cvsroot/mplayer/main/open.c,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- open.c	21 Aug 2001 22:15:19 -0000	1.8
+++ open.c	21 Aug 2001 22:20:41 -0000	1.9
@@ -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;
 }
 




More information about the MPlayer-cvslog mailing list