Browse Source

lavfi/color: fix typo

Signed-off-by: Paul B Mahol <onemda@gmail.com>
tags/n1.0
Paul B Mahol 13 years ago
parent
commit
10952e0602
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      libavfilter/vsrc_color.c

+ 2
- 2
libavfilter/vsrc_color.c View File

@@ -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…
Cancel
Save