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:
authorPeter Ross <pross@xvid.org>2018-11-19 12:03:39 +0300
committerPeter Ross <pross@xvid.org>2018-11-21 15:26:29 +0300
commit1ee4b4006be6c34a0dfec367a60942b85d13238e (patch)
tree251a7ee86ea6b99972ddb44453dcc3f14172b5ca /libavfilter/f_graphmonitor.c
parent77bf85515e59f7b17685fbbec943ff46f6217719 (diff)
avfilter/graphmonitor: use SIZE_SPECIFIER for size_t type
Diffstat (limited to 'libavfilter/f_graphmonitor.c')
-rw-r--r--libavfilter/f_graphmonitor.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/f_graphmonitor.c b/libavfilter/f_graphmonitor.c
index 7052c84d9b..c001835364 100644
--- a/libavfilter/f_graphmonitor.c
+++ b/libavfilter/f_graphmonitor.c
@@ -211,7 +211,7 @@ static void draw_items(AVFilterContext *ctx, AVFrame *out,
snprintf(buffer, sizeof(buffer)-1, " | queue: ");
drawtext(out, xpos, ypos, buffer, s->white);
xpos += strlen(buffer) * 8;
- snprintf(buffer, sizeof(buffer)-1, "%"PRId64, frames);
+ snprintf(buffer, sizeof(buffer)-1, "%"SIZE_SPECIFIER, frames);
drawtext(out, xpos, ypos, buffer, frames > 0 ? frames >= 10 ? frames >= 50 ? s->red : s->yellow : s->green : s->white);
xpos += strlen(buffer) * 8;
}