# HG changeset patch # User diego # Date 1116801344 0 # Node ID f62be65f7df3f0818eb3fd6d151a7c3fa16ee01c # Parent 2c2b920887056fbb584b43ee50477bc48915f5aa Reduce senseless spamminess of DVD playback in verbose mode. diff -r 2c2b92088705 -r f62be65f7df3 libmpdemux/stream_dvd.c --- a/libmpdemux/stream_dvd.c Sun May 22 19:52:09 2005 +0000 +++ b/libmpdemux/stream_dvd.c Sun May 22 22:35:44 2005 +0000 @@ -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_celllast_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; }