diff options
-rw-r--r-- | DOCS/man/en/mplayer.1 | 5 | ||||
-rw-r--r-- | libmpdemux/cdda.c | 2 |
2 files changed, 4 insertions, 3 deletions
diff --git a/DOCS/man/en/mplayer.1 b/DOCS/man/en/mplayer.1 index 3b3454e22e..4c45a35a00 100644 --- a/DOCS/man/en/mplayer.1 +++ b/DOCS/man/en/mplayer.1 @@ -913,10 +913,11 @@ Available options are: Set CD spin speed. .IPs paranoia=<0\-2> Set paranoia level. +Values other than 0 seem to break playback of anything but the first track. .RSss -0: disable checking +0: disable checking (default) .br -1: overlap checking only (default) +1: overlap checking only .br 2: full data correction and verification .REss diff --git a/libmpdemux/cdda.c b/libmpdemux/cdda.c index 26075a37c3..f6b098a11f 100644 --- a/libmpdemux/cdda.c +++ b/libmpdemux/cdda.c @@ -28,7 +28,7 @@ static struct cdda_params { m_span_t span; } cdda_dflts = { -1, - 1, + 0, NULL, 0, -1, |