[vlc-commits] vout opengl: Change non-error to a debug message

Marvin Scholz git at videolan.org
Wed May 3 12:39:45 CEST 2017


vlc | branch: master | Marvin Scholz <epirat07 at gmail.com> | Wed May  3 11:41:16 2017 +0200| [da9428b60887d738708307f25443f1d1e9ca8140] | committer: Hugo Beauzée-Luyssen

vout opengl: Change non-error to a debug message

Replace msg_Err with msg_Dbg, as it is reported that PBO support is
enabled, which is not an error.

Signed-off-by: Hugo Beauzée-Luyssen <hugo at beauzee.fr>

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=da9428b60887d738708307f25443f1d1e9ca8140
---

 modules/video_output/opengl/converters.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/modules/video_output/opengl/converters.c b/modules/video_output/opengl/converters.c
index 000358595e..72195eeefe 100644
--- a/modules/video_output/opengl/converters.c
+++ b/modules/video_output/opengl/converters.c
@@ -1128,7 +1128,7 @@ generic_init(const video_format_t *fmt, opengl_tex_converter_t *tc,
             {
                 tc->pf_update  = tc_pbo_update;
                 tc->pf_release = tc_pbo_release;
-                msg_Err(tc->gl, "PBO support enabled");
+                msg_Dbg(tc->gl, "PBO support enabled");
             }
         }
 #endif



More information about the vlc-commits mailing list