[FFmpeg-cvslog] lavfi/eq: clarify error message in case of expression parsing error

Stefano Sabatini git at videolan.org
Sun Mar 15 14:58:39 CET 2015


ffmpeg | branch: master | Stefano Sabatini <stefasab at gmail.com> | Sun Mar 15 14:26:51 2015 +0100| [6a63d0d826ed35c03553073a6709bda30c6c3f0b] | committer: Stefano Sabatini

lavfi/eq: clarify error message in case of expression parsing error

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

 libavfilter/vf_eq.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libavfilter/vf_eq.c b/libavfilter/vf_eq.c
index 980e9ca..a370032 100644
--- a/libavfilter/vf_eq.c
+++ b/libavfilter/vf_eq.c
@@ -170,7 +170,7 @@ static int set_expr(AVExpr **pexpr, const char *expr, const char *option, void *
                         NULL, NULL, NULL, NULL, 0, log_ctx);
     if (ret < 0) {
         av_log(log_ctx, AV_LOG_ERROR,
-               "Error when evaluating the expression '%s' for %s\n",
+               "Error when parsing the expression '%s' for %s\n",
                expr, option);
         *pexpr = old;
         return ret;



More information about the ffmpeg-cvslog mailing list