lavfi/color: fix typo
Signed-off-by: Paul B Mahol <onemda@gmail.com>
This commit is contained in:
parent
18d7bea695
commit
10952e0602
1 changed files with 2 additions and 2 deletions
|
|
@ -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))) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue