af_volume: don't print missing replaygain tags as error

There's no reason to. Audio files often lack them.
This commit is contained in:
wm4 2014-03-14 22:36:53 +01:00
parent dc0f2308d1
commit c473635f66
1 changed files with 1 additions and 1 deletions

View File

@ -63,7 +63,7 @@ static int decode_gain(struct af_instance *af, const char *tag, float *out)
tag_val = mp_tags_get_str(af->metadata, tag);
if (!tag_val) {
mp_msg(af->log, MSGL_ERR, "Replaygain tags not found\n");
mp_msg(af->log, MSGL_V, "Replaygain tags not found\n");
return -1;
}