From c473635f6611ad5277a8c092854c4911ec8fb18a Mon Sep 17 00:00:00 2001 From: wm4 Date: Fri, 14 Mar 2014 22:36:53 +0100 Subject: af_volume: don't print missing replaygain tags as error There's no reason to. Audio files often lack them. --- audio/filter/af_volume.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'audio') 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; } -- cgit v1.2.3