diff options
author | Christian Hesse <mail@eworm.de> | 2015-07-09 09:17:47 +0200 |
---|---|---|
committer | Christian Hesse <mail@eworm.de> | 2015-07-09 09:17:47 +0200 |
commit | 008f3c8c53760d3e5e12c55124e0aad2a805c79d (patch) | |
tree | a88d8bfada36ada43057d794cb64250f71ef3ffa | |
parent | 53950b19fc05087cc90aef36ddc391d4c28eb169 (diff) | |
download | mpd-notification-008f3c8c53760d3e5e12c55124e0aad2a805c79d.tar.gz mpd-notification-008f3c8c53760d3e5e12c55124e0aad2a805c79d.tar.zst |
silent libav error messages
-rw-r--r-- | Makefile | 2 | ||||
-rw-r--r-- | mpd-notification.c | 3 |
2 files changed, 4 insertions, 1 deletions
@@ -8,7 +8,7 @@ RM := rm CFLAGS += -std=c11 -O2 -Wall -Werror CFLAGS += $(shell pkg-config --cflags --libs libmpdclient) CFLAGS += $(shell pkg-config --cflags --libs libnotify) -LIBAV_CFLAGS := $(shell pkg-config --cflags --libs libavformat 2>/dev/null) +LIBAV_CFLAGS := $(shell pkg-config --cflags --libs libavformat libavutil 2>/dev/null) ifneq ($(LIBAV_CFLAGS),) CFLAGS += -DHAVE_LIBAV $(LIBAV_CFLAGS) endif diff --git a/mpd-notification.c b/mpd-notification.c index 862832a..ad3d265 100644 --- a/mpd-notification.c +++ b/mpd-notification.c @@ -271,6 +271,9 @@ int main(int argc, char ** argv) { #ifdef HAVE_LIBAV /* libav */ av_register_all(); + + /* only fatal messages from libav */ + av_log_set_level(AV_LOG_FATAL); #endif conn = mpd_connection_new(mpd_host, mpd_port, mpd_timeout); |