[MPlayer-cvslog] CVS: main/libmpdemux stream_dvd.c,1.1,1.2

Diego Biurrun CVS syncmail at mplayerhq.hu
Mon May 23 00:35:46 CEST 2005


CVS change done by Diego Biurrun CVS

Update of /cvsroot/mplayer/main/libmpdemux
In directory mail:/var2/tmp/cvs-serv21508/libmpdemux

Modified Files:
	stream_dvd.c 
Log Message:
Reduce senseless spamminess of DVD playback in verbose mode.


Index: stream_dvd.c
===================================================================
RCS file: /cvsroot/mplayer/main/libmpdemux/stream_dvd.c,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- stream_dvd.c	19 May 2005 19:50:39 -0000	1.1
+++ stream_dvd.c	22 May 2005 22:35:44 -0000	1.2
@@ -190,7 +190,7 @@
 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);
+  mp_msg(MSGT_DVD,MSGL_DBG2, "dvd_next_cell: next1=0x%X  \n",next_cell);
   if( d->cur_pgc->cell_playback[ next_cell ].block_type == BLOCK_TYPE_ANGLE_BLOCK ) {
     while(next_cell<d->last_cell) {
       if( d->cur_pgc->cell_playback[next_cell].block_mode == BLOCK_MODE_LAST_CELL )
@@ -198,7 +198,7 @@
       ++next_cell;
     }
   }
-  mp_msg(MSGT_DVD,MSGL_V, "dvd_next_cell: next2=0x%X  \n",next_cell);
+  mp_msg(MSGT_DVD,MSGL_DBG2, "dvd_next_cell: next2=0x%X  \n",next_cell);
 
   ++next_cell;
   if(next_cell>=d->last_cell) 
@@ -208,7 +208,7 @@
     if(next_cell>=d->last_cell) 
       return -1; // EOF
   }
-  mp_msg(MSGT_DVD,MSGL_V, "dvd_next_cell: next3=0x%X  \n",next_cell);
+  mp_msg(MSGT_DVD,MSGL_DBG2, "dvd_next_cell: next3=0x%X  \n",next_cell);
   return next_cell;
 }
 




More information about the MPlayer-cvslog mailing list