diff options
author | reimar <reimar@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2005-11-05 11:40:06 +0000 |
---|---|---|
committer | reimar <reimar@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2005-11-05 11:40:06 +0000 |
commit | eeaa5eb45fe1f2a72dc8c55ed50008ca40b55428 (patch) | |
tree | ef56857c8cd208a782f2242fed3c555b86830a0a | |
parent | 59b42cdde8d3d79ea81056009463de76e3c08dd4 (diff) |
set cdda paranoia default to 0 since e.g. cdda://2 breaks otherwise.
this was the default before, too, since a function call was missing and
thus the paranoia setting was ignored
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@16915 b3059339-0415-0410-9bf9-f77b7e298cf2
-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, |