summaryrefslogtreecommitdiffstats
path: root/libao2
diff options
context:
space:
mode:
authorreimar <reimar@b3059339-0415-0410-9bf9-f77b7e298cf2>2006-12-10 00:21:35 +0000
committerreimar <reimar@b3059339-0415-0410-9bf9-f77b7e298cf2>2006-12-10 00:21:35 +0000
commit2a2d39f0ed26e8572a470d3055bc0abda54949b1 (patch)
treee76a0b91698643e6e70601492f1277bd3d85d620 /libao2
parent97c7df03b7f3107ab7e6bed073437351b6e8d081 (diff)
downloadmpv-2a2d39f0ed26e8572a470d3055bc0abda54949b1.tar.bz2
mpv-2a2d39f0ed26e8572a470d3055bc0abda54949b1.tar.xz
Remove a disabled and completely outdated sample rate mismatch warning.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21563 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libao2')
-rw-r--r--libao2/ao_oss.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/libao2/ao_oss.c b/libao2/ao_oss.c
index be0c6655ce..35fcfd6e6c 100644
--- a/libao2/ao_oss.c
+++ b/libao2/ao_oss.c
@@ -351,10 +351,6 @@ ac3_retry:
ao_data.samplerate=rate;
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 0
- if(ao_data.samplerate!=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);
-#endif
}
if(ioctl(audio_fd, SNDCTL_DSP_GETOSPACE, &zz)==-1){