summaryrefslogtreecommitdiffstats
path: root/audio
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2014-03-14 22:36:53 +0100
committerwm4 <wm4@nowhere>2014-03-14 22:37:46 +0100
commitc473635f6611ad5277a8c092854c4911ec8fb18a (patch)
tree7632bc79c19eee1e8edd7afcd7d8f0e20d67490d /audio
parentdc0f2308d13e107802111eb843996972e53766ad (diff)
downloadmpv-c473635f6611ad5277a8c092854c4911ec8fb18a.tar.bz2
mpv-c473635f6611ad5277a8c092854c4911ec8fb18a.tar.xz
af_volume: don't print missing replaygain tags as error
There's no reason to. Audio files often lack them.
Diffstat (limited to 'audio')
-rw-r--r--audio/filter/af_volume.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/audio/filter/af_volume.c b/audio/filter/af_volume.c
index 31f9653e6f..8c24568187 100644
--- a/audio/filter/af_volume.c
+++ b/audio/filter/af_volume.c
@@ -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;
}