summaryrefslogtreecommitdiff
path: root/libavfilter/vf_colormatrix.c
diff options
context:
space:
mode:
authorStefano Sabatini <stefasab@gmail.com>2013-03-24 13:46:15 +0100
committerStefano Sabatini <stefasab@gmail.com>2013-03-24 20:21:35 +0100
commit3b811bcf674038ab298d5dd194992e4e4929d8f2 (patch)
tree7bb6c0005e6995b396588b212d697b1afde86072 /libavfilter/vf_colormatrix.c
parent1b140835b698f08f6937a1027adc78ede3afa88d (diff)
downloadffmpeg-3b811bcf674038ab298d5dd194992e4e4929d8f2.tar.gz
lavfi/colormatrix: reword error message in init
Change: "source and destination color space are identical" which is a true fact, but doesn't tell nothing about what's wrong, to: "Source and destination color space must not be identical" which tells more explicitly what the problem is.
Diffstat (limited to 'libavfilter/vf_colormatrix.c')
-rw-r--r--libavfilter/vf_colormatrix.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/vf_colormatrix.c b/libavfilter/vf_colormatrix.c
index 316fced99b..c57be41559 100644
--- a/libavfilter/vf_colormatrix.c
+++ b/libavfilter/vf_colormatrix.c
@@ -170,7 +170,7 @@ static av_cold int init(AVFilterContext *ctx, const char *args)
}
if (color->source == color->dest) {
- av_log(ctx, AV_LOG_ERROR, "source and destination color space are identical\n");
+ av_log(ctx, AV_LOG_ERROR, "Source and destination color space must not be identical\n");
return AVERROR(EINVAL);
}