Commit b3dc51dd authored by Michael Niedermayer's avatar Michael Niedermayer

avfilter/f_bench: Fix comparission condition

Fixes: CID1355115
Signed-off-by: 's avatarMichael Niedermayer <michael@niedermayer.cc>
parent dec816f9
......@@ -68,7 +68,7 @@ static int filter_frame(AVFilterLink *inlink, AVFrame *in)
if (s->action == ACTION_START) {
av_dict_set_int(&in->metadata, START_TIME_KEY, t, 0);
} else if (s->action = ACTION_STOP) {
} else if (s->action == ACTION_STOP) {
AVDictionaryEntry *e = av_dict_get(in->metadata, START_TIME_KEY, NULL, 0);
if (e) {
const int64_t start = strtoll(e->value, NULL, 0);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment