Commit 10952e06 authored by Paul B Mahol's avatar Paul B Mahol

lavfi/color: fix typo

Signed-off-by: 's avatarPaul B Mahol <onemda@gmail.com>
parent 18d7bea6
......@@ -80,8 +80,8 @@ static av_cold int color_init(AVFilterContext *ctx, const char *args, void *opaq
color->class = &color_class;
if (args) {
colon = strrchr(args, ':');
equal = strrchr(args, '=');
colon = strchr(args, ':');
equal = strchr(args, '=');
}
if (!args || (equal && (!colon || equal < colon))) {
......
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