[vlc-commits] video_output: a crop event is not an error

Steve Lhomme git at videolan.org
Mon Mar 19 13:36:08 CET 2018


vlc/vlc-3.0 | branch: master | Steve Lhomme <robux4 at ycbcr.xyz> | Fri Feb 16 09:50:32 2018 +0100| [c2f6cab0d7cebf56b80d87d2d342688fc5a9c2e0] | committer: Steve Lhomme

video_output: a crop event is not an error

Lower the log level

(cherry picked from commit ce9cc6baf930b7037ae4ad98e3d858867d17d928)

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

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

diff --git a/src/video_output/video_output.c b/src/video_output/video_output.c
index ffddcb0903..566dd5078a 100644
--- a/src/video_output/video_output.c
+++ b/src/video_output/video_output.c
@@ -1467,7 +1467,7 @@ static void ThreadExecuteCropBorder(vout_thread_t *vout,
                                     unsigned left, unsigned top,
                                     unsigned right, unsigned bottom)
 {
-    msg_Err(vout, "ThreadExecuteCropBorder %d.%d %dx%d", left, top, right, bottom);
+    msg_Dbg(vout, "ThreadExecuteCropBorder %d.%d %dx%d", left, top, right, bottom);
     vout_SetDisplayCrop(vout->p->display.vd, 0, 0,
                         left, top, -(int)right, -(int)bottom);
 }



More information about the vlc-commits mailing list