[vlc-commits] video_output: a crop event is not an error
Steve Lhomme
git at videolan.org
Sat Feb 17 10:13:00 CET 2018
vlc | branch: master | Steve Lhomme <robux4 at ycbcr.xyz> | Fri Feb 16 09:50:32 2018 +0100| [ce9cc6baf930b7037ae4ad98e3d858867d17d928] | committer: Steve Lhomme
video_output: a crop event is not an error
Lower the log level
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=ce9cc6baf930b7037ae4ad98e3d858867d17d928
---
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 640d999e80..9108e876df 100644
--- a/src/video_output/video_output.c
+++ b/src/video_output/video_output.c
@@ -1391,7 +1391,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