Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefano Sabatini <stefasab@gmail.com>2013-02-04 01:26:55 +0400
committerStefano Sabatini <stefasab@gmail.com>2013-02-06 03:20:37 +0400
commit212bb6490fa62ff0a11314cfc3749ffa384b537b (patch)
treed99408ccb46b95274b932920e00bec7287022b3c /ffplay.c
parent58c4b0f990828675d33f971073f61c81ac1066a8 (diff)
ffplay: report video frame changes only in debug mode
In particular, remove distracting message: "Video frame changed from size:0x0 format:none serial:-1 to ..."
Diffstat (limited to 'ffplay.c')
-rw-r--r--ffplay.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ffplay.c b/ffplay.c
index bbc1e70455..d8dbe449f9 100644
--- a/ffplay.c
+++ b/ffplay.c
@@ -1859,7 +1859,7 @@ static int video_thread(void *arg)
|| last_h != frame->height
|| last_format != frame->format
|| last_serial != serial) {
- av_log(NULL, AV_LOG_INFO,
+ av_log(NULL, AV_LOG_DEBUG,
"Video frame changed from size:%dx%d format:%s serial:%d to size:%dx%d format:%s serial:%d\n",
last_w, last_h,
(const char *)av_x_if_null(av_get_pix_fmt_name(last_format), "none"), last_serial,