瀏覽代碼

video_output: a crop event is not an error

Lower the log level
Steve Lhomme 7 年之前
父節點
當前提交
ce9cc6baf9
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      src/video_output/video_output.c

+ 1 - 1
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);
 }