summaryrefslogtreecommitdiffstats
path: root/audio/out
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2016-09-07 12:54:33 +0200
committerwm4 <wm4@nowhere>2016-09-07 12:54:33 +0200
commit5a7b1ff4c0cb176ee94995646d310f6ffd60fe61 (patch)
tree21df6ba3c3e90307821738703f3af792e2ad9814 /audio/out
parent591e21a2ebd105c33127d4a792d4d0e1a083fcfc (diff)
downloadmpv-5a7b1ff4c0cb176ee94995646d310f6ffd60fe61.tar.bz2
mpv-5a7b1ff4c0cb176ee94995646d310f6ffd60fe61.tar.xz
ao_pcm: remove some useless messages
The first one is printed even if the user disabled video (or there's no video), so just remove it. The second one uses deprecated sub-option syntax, so remove that as well.
Diffstat (limited to 'audio/out')
-rw-r--r--audio/out/ao_pcm.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/audio/out/ao_pcm.c b/audio/out/ao_pcm.c
index 535b77642d..169a1b94a1 100644
--- a/audio/out/ao_pcm.c
+++ b/audio/out/ao_pcm.c
@@ -152,8 +152,6 @@ static int init(struct ao *ao)
priv->outputfilename,
priv->waveheader ? "WAVE" : "RAW PCM", ao->samplerate,
ao->channels.num, af_fmt_to_str(ao->format));
- MP_INFO(ao, "Info: Faster dumping is achieved with --no-video\n");
- MP_INFO(ao, "Info: To write WAVE files use --ao=pcm:waveheader (default).\n");
priv->fp = fopen(priv->outputfilename, priv->append ? "ab" : "wb");
if (!priv->fp) {