diff options
author | Stefano Sabatini <stefasab@gmail.com> | 2015-03-15 14:26:51 +0100 |
---|---|---|
committer | Stefano Sabatini <stefasab@gmail.com> | 2015-03-15 14:55:13 +0100 |
commit | 6a63d0d826ed35c03553073a6709bda30c6c3f0b (patch) | |
tree | 0bd161db360b01fcb1b3cd37f64782fef20f98bc | |
parent | 2cda1a16d0d34f1e936ed179c6f864bae1026b06 (diff) | |
download | ffmpeg-6a63d0d826ed35c03553073a6709bda30c6c3f0b.tar.gz |
lavfi/eq: clarify error message in case of expression parsing error
-rw-r--r-- | libavfilter/vf_eq.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/vf_eq.c b/libavfilter/vf_eq.c index 980e9ca6a0..a370032251 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; |