[FFmpeg-cvslog] lavfi/color: fix typo

Paul B Mahol git at videolan.org
Tue Jun 19 22:05:15 CEST 2012


ffmpeg | branch: master | Paul B Mahol <onemda at gmail.com> | Tue Jun 19 20:04:17 2012 +0000| [10952e060281e4f725c4f925db55b6ea675cc034] | committer: Paul B Mahol

lavfi/color: fix typo

Signed-off-by: Paul B Mahol <onemda at gmail.com>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=10952e060281e4f725c4f925db55b6ea675cc034
---

 libavfilter/vsrc_color.c |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/libavfilter/vsrc_color.c b/libavfilter/vsrc_color.c
index 555ba0f..7f4f479 100644
--- a/libavfilter/vsrc_color.c
+++ b/libavfilter/vsrc_color.c
@@ -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))) {



More information about the ffmpeg-cvslog mailing list