mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
lavfi/select: avoid double -> int lossy conversion in debug log
This commit is contained in:
parent
1afbb4c226
commit
872855e2a5
@ -299,11 +299,11 @@ static int select_frame(AVFilterContext *ctx, AVFilterBufferRef *ref)
|
||||
|
||||
res = av_expr_eval(select->expr, select->var_values, NULL);
|
||||
av_log(inlink->dst, AV_LOG_DEBUG,
|
||||
"n:%d pts:%d t:%f pos:%d key:%d",
|
||||
(int)select->var_values[VAR_N],
|
||||
(int)select->var_values[VAR_PTS],
|
||||
"n:%f pts:%f t:%f pos:%f key:%d",
|
||||
select->var_values[VAR_N],
|
||||
select->var_values[VAR_PTS],
|
||||
select->var_values[VAR_T],
|
||||
(int)select->var_values[VAR_POS],
|
||||
select->var_values[VAR_POS],
|
||||
(int)select->var_values[VAR_KEY]);
|
||||
|
||||
switch (inlink->type) {
|
||||
|
Loading…
Reference in New Issue
Block a user