mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2024-12-24 08:12:44 +00:00
avfilter/overlay: reindent
This commit is contained in:
parent
b18d1b094e
commit
d5f817793e
@ -554,21 +554,20 @@ static AVFrame *do_blend(AVFilterContext *ctx, AVFrame *mainpic,
|
||||
OverlayContext *s = ctx->priv;
|
||||
AVFilterLink *inlink = ctx->inputs[0];
|
||||
|
||||
/* TODO: reindent */
|
||||
if (s->eval_mode == EVAL_MODE_FRAME) {
|
||||
int64_t pos = av_frame_get_pkt_pos(mainpic);
|
||||
if (s->eval_mode == EVAL_MODE_FRAME) {
|
||||
int64_t pos = av_frame_get_pkt_pos(mainpic);
|
||||
|
||||
s->var_values[VAR_N] = inlink->frame_count;
|
||||
s->var_values[VAR_T] = mainpic->pts == AV_NOPTS_VALUE ?
|
||||
NAN : mainpic->pts * av_q2d(inlink->time_base);
|
||||
s->var_values[VAR_POS] = pos == -1 ? NAN : pos;
|
||||
s->var_values[VAR_N] = inlink->frame_count;
|
||||
s->var_values[VAR_T] = mainpic->pts == AV_NOPTS_VALUE ?
|
||||
NAN : mainpic->pts * av_q2d(inlink->time_base);
|
||||
s->var_values[VAR_POS] = pos == -1 ? NAN : pos;
|
||||
|
||||
eval_expr(ctx);
|
||||
av_log(ctx, AV_LOG_DEBUG, "n:%f t:%f pos:%f x:%f xi:%d y:%f yi:%d\n",
|
||||
s->var_values[VAR_N], s->var_values[VAR_T], s->var_values[VAR_POS],
|
||||
s->var_values[VAR_X], s->x,
|
||||
s->var_values[VAR_Y], s->y);
|
||||
}
|
||||
eval_expr(ctx);
|
||||
av_log(ctx, AV_LOG_DEBUG, "n:%f t:%f pos:%f x:%f xi:%d y:%f yi:%d\n",
|
||||
s->var_values[VAR_N], s->var_values[VAR_T], s->var_values[VAR_POS],
|
||||
s->var_values[VAR_X], s->x,
|
||||
s->var_values[VAR_Y], s->y);
|
||||
}
|
||||
|
||||
blend_image(ctx, mainpic, second, s->x, s->y);
|
||||
return mainpic;
|
||||
|
Loading…
Reference in New Issue
Block a user