[vlc-commits] Revert "aout: make log message to be debug as there isn' t any real error if no filters needed"
Rémi Denis-Courmont
git at videolan.org
Fri Mar 8 19:52:21 CET 2013
vlc | branch: master | Rémi Denis-Courmont <remi at remlab.net> | Fri Mar 8 20:51:47 2013 +0200| [1267f1526b931609913391b8e9d82c7e9fc1635d] | committer: Rémi Denis-Courmont
Revert "aout: make log message to be debug as there isn't any real error if no filters needed"
If the user explicitly asks for a filter, it's an error to not be able
to instatiate it.
This reverts commit 7b0761c4359d12de0bad78a1d255a55cb89bc562.
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=1267f1526b931609913391b8e9d82c7e9fc1635d
---
src/audio_output/filters.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/audio_output/filters.c b/src/audio_output/filters.c
index 446f8b6..b46fc2d 100644
--- a/src/audio_output/filters.c
+++ b/src/audio_output/filters.c
@@ -498,7 +498,7 @@ int aout_FiltersNew (audio_output_t *aout,
name == visual);
if (filter == NULL)
{
- msg_Dbg (aout, "cannot add user filter %s (skipped)", name);
+ msg_Err (aout, "cannot add user filter %s (skipped)", name);
continue;
}
More information about the vlc-commits
mailing list