[vlc-commits] adjust: change unsupported chroma msg_Err to msg_Dbg
Victorien Le Couviour--Tuffet
git at videolan.org
Wed May 10 10:10:39 CEST 2017
vlc | branch: master | Victorien Le Couviour--Tuffet <victorien.lecouviour.tuffet at gmail.com> | Tue May 2 10:45:42 2017 +0200| [a3afc94a05cb794dd684b76434cbba5eeb4700d4] | committer: Thomas Guillem
adjust: change unsupported chroma msg_Err to msg_Dbg
This is a probing error. We should not print it as error since there may be
more than one adjust module (like the vdpau one).
Signed-off-by: Thomas Guillem <thomas at gllm.fr>
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=a3afc94a05cb794dd684b76434cbba5eeb4700d4
---
modules/video_filter/adjust.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/modules/video_filter/adjust.c b/modules/video_filter/adjust.c
index 7b5c78443b..de584a07ca 100644
--- a/modules/video_filter/adjust.c
+++ b/modules/video_filter/adjust.c
@@ -185,7 +185,7 @@ static int Create( vlc_object_t *p_this )
break;
default:
- msg_Err( p_filter, "Unsupported input chroma (%4.4s)",
+ msg_Dbg( p_filter, "Unsupported input chroma (%4.4s)",
(char*)&(p_filter->fmt_in.video.i_chroma) );
return VLC_EGENERIC;
}
More information about the vlc-commits
mailing list