1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2024-11-21 10:55:51 +02:00

lavfi/color: fix typo

Signed-off-by: Paul B Mahol <onemda@gmail.com>
This commit is contained in:
Paul B Mahol 2012-06-19 20:04:17 +00:00
parent 18d7bea695
commit 10952e0602

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))) {