summaryrefslogtreecommitdiffstats
path: root/libao2
diff options
context:
space:
mode:
authoralex <alex@b3059339-0415-0410-9bf9-f77b7e298cf2>2002-06-28 16:42:32 +0000
committeralex <alex@b3059339-0415-0410-9bf9-f77b7e298cf2>2002-06-28 16:42:32 +0000
commite9cf7c083b7de2dbf5db5711a5acefe522ca86ac (patch)
tree21ece98a5cacc45f1b0c86e088d2c589dc2f4d7f /libao2
parentaf43471f902eaf6f7b8ee19f070057b223d77cad (diff)
downloadmpv-e9cf7c083b7de2dbf5db5711a5acefe522ca86ac.tar.bz2
mpv-e9cf7c083b7de2dbf5db5711a5acefe522ca86ac.tar.xz
more informal warning and also fixed a 10l bug. Patch by tibcu
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@6589 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libao2')
-rw-r--r--libao2/ao_oss.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libao2/ao_oss.c b/libao2/ao_oss.c
index 231a28ac07..f55143d053 100644
--- a/libao2/ao_oss.c
+++ b/libao2/ao_oss.c
@@ -168,7 +168,7 @@ ac3_retry:
ioctl (audio_fd, SNDCTL_DSP_SPEED, &ao_data.samplerate);
mp_msg(MSGT_AO,MSGL_V,"audio_setup: using %d Hz samplerate (requested: %d)\n",ao_data.samplerate,rate);
if(ao_data.samplerate!=rate)
- mp_msg(MSGT_AO,MSGL_WARN,"WARNING! Your soundcard does NOT support %d Hz samplerate! A-V sync problems are possible! Try with '-aop list=resample:fout=%d'\n",rate);
+ mp_msg(MSGT_AO,MSGL_WARN,"WARNING! Your soundcard does NOT support %d Hz samplerate! A-V sync problems or wrong speed are possible! Try with '-aop list=resample:fout=%d'\n",rate,ao_data.samplerate);
}
if(ioctl(audio_fd, SNDCTL_DSP_GETOSPACE, &zz)==-1){