From 191f30e3e9a1f4b77d934daced55a64e069c14cc Mon Sep 17 00:00:00 2001 From: TangoCash Date: Tue, 2 Oct 2018 21:25:41 +0200 Subject: [PATCH] silent output Origin commit data ------------------ Branch: master Commit: https://github.com/neutrino-images/ni-libstb-hal/commit/94ef9cd9c96f0ca41428de993447ace762e301b8 Author: TangoCash Date: 2018-10-02 (Tue, 02 Oct 2018) ------------------ No further description and justification available within origin commit message! ------------------ This commit was generated by Migit --- generic-pc/video.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/generic-pc/video.cpp b/generic-pc/video.cpp index be89bf2..a9b7550 100644 --- a/generic-pc/video.cpp +++ b/generic-pc/video.cpp @@ -327,7 +327,7 @@ void cVideo::ShowPicture(const char *fname) buf_in %= VDEC_MAXBUFS; buf_num++; if (buf_num > (VDEC_MAXBUFS - 1)) { - lt_info("%s: buf_num overflow\n", __func__); + lt_debug("%s: buf_num overflow\n", __func__); buf_out++; buf_out %= VDEC_MAXBUFS; buf_num--; @@ -604,7 +604,7 @@ void cVideo::run(void) c->time_base.num, c->time_base.den, c->ticks_per_frame, dec_r, av_frame_get_best_effort_timestamp(frame)); } else - lt_info("%s: got_frame: %d stillpicture: %d\n", __func__, got_frame, stillpicture); + lt_debug("%s: got_frame: %d stillpicture: %d\n", __func__, got_frame, stillpicture); still_m.unlock(); av_packet_unref(&avpkt); }