summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorarpi <arpi@b3059339-0415-0410-9bf9-f77b7e298cf2>2001-08-21 22:20:41 +0000
committerarpi <arpi@b3059339-0415-0410-9bf9-f77b7e298cf2>2001-08-21 22:20:41 +0000
commitd499642e0262300683a61c8f3768613849e831d0 (patch)
tree84c7dce9f71e5e9ee38636727f3a6723949a59ec
parent26377b332625be16b04232bf6d66d0de28feac68 (diff)
downloadmpv-d499642e0262300683a61c8f3768613849e831d0.tar.bz2
mpv-d499642e0262300683a61c8f3768613849e831d0.tar.xz
some debug messages
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@1617 b3059339-0415-0410-9bf9-f77b7e298cf2
-rw-r--r--open.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/open.c b/open.c
index c153008985..1d31ef2a86 100644
--- a/open.c
+++ b/open.c
@@ -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;
}