[vlc-devel] [PATCH] video-filter: adjust: change unsupported chroma	msg_Err to msg_Dbg
    Victorien Le Couviour--Tuffet 
    victorien.lecouviour.tuffet at gmail.com
       
    Tue May  2 10:45:42 CEST 2017
    
    
  
This was a probing error. We should not print it as error since there may be
more than one adjust module (like the vdpau one).
---
 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;
     }
-- 
2.12.0
    
    
More information about the vlc-devel
mailing list