0
0
mirror of https://github.com/mpv-player/mpv.git synced 2024-09-20 20:03:10 +02:00

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

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;
}