summaryrefslogtreecommitdiffstats
path: root/libmpdemux
diff options
context:
space:
mode:
authordiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2005-05-22 22:35:44 +0000
committerdiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2005-05-22 22:35:44 +0000
commitb9586c6e1c663dbf39f88f29ce18424bbd3f966d (patch)
tree582467c7d9433770f6360fc8cbb8a34e76f97f37 /libmpdemux
parentfa7ce2934734de157f8c3eda54e299da82567193 (diff)
downloadmpv-b9586c6e1c663dbf39f88f29ce18424bbd3f966d.tar.bz2
mpv-b9586c6e1c663dbf39f88f29ce18424bbd3f966d.tar.xz
Reduce senseless spamminess of DVD playback in verbose mode.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@15552 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libmpdemux')
-rw-r--r--libmpdemux/stream_dvd.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/libmpdemux/stream_dvd.c b/libmpdemux/stream_dvd.c
index 964d32aa03..f452cab88a 100644
--- a/libmpdemux/stream_dvd.c
+++ b/libmpdemux/stream_dvd.c
@@ -190,7 +190,7 @@ int dvd_sid_from_lang(stream_t *stream, unsigned char* lang) {
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 @@ 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);
+ 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 @@ static int dvd_next_cell(dvd_priv_t *d) {
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;
}