summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAmos Onn <amosonn@gmail.com>2014-06-15 02:06:08 +0300
committerwm4 <wm4@nowhere>2014-06-15 09:25:15 +0200
commit8593c4f70be57dbe07497e1c70fb294c4956d197 (patch)
tree0eb3c7de6c94d4169834167c1df1d6005519ca45
parentf645e8921c8f8704ce8b41bc2d7ae80bdcfd6590 (diff)
downloadmpv-8593c4f70be57dbe07497e1c70fb294c4956d197.tar.bz2
mpv-8593c4f70be57dbe07497e1c70fb294c4956d197.tar.xz
ao_pcm: fix message strings
Signed-off-by: wm4 <wm4@nowhere>
-rw-r--r--audio/out/ao_pcm.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/audio/out/ao_pcm.c b/audio/out/ao_pcm.c
index 1e8a0adf75..649c7072b1 100644
--- a/audio/out/ao_pcm.c
+++ b/audio/out/ao_pcm.c
@@ -149,8 +149,8 @@ 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");
+ 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, "wb");
if (!priv->fp) {