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.
This commit is contained in:
wm4 2016-09-07 12:54:33 +02:00
parent 591e21a2eb
commit 5a7b1ff4c0
1 changed files with 0 additions and 2 deletions

View File

@ -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) {