summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefano Sabatini <stefano.sabatini-lala@poste.it>2010-08-06 09:36:50 +0000
committerStefano Sabatini <stefano.sabatini-lala@poste.it>2010-08-06 09:36:50 +0000
commit899a507fa690e533f62e95a0c5d1caf487cf72ce (patch)
tree7c55b990b0def97e5cfc1a5faa9e848e3ad70730
parentbf176f58b79e9bbbcc0eb243d39fda3f2419992c (diff)
Clarify av_check_image_size() log message.
Originally committed as revision 24710 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r--libavcore/imgutils.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcore/imgutils.c b/libavcore/imgutils.c
index 350caed3c1..f3d75eecb2 100644
--- a/libavcore/imgutils.c
+++ b/libavcore/imgutils.c
@@ -111,6 +111,6 @@ int av_check_image_size(unsigned int w, unsigned int h, int log_offset, void *lo
if((int)w>0 && (int)h>0 && (w+128)*(uint64_t)(h+128) < INT_MAX/8)
return 0;
- av_log(&imgutils, AV_LOG_ERROR, "picture size invalid (%ux%u)\n", w, h);
+ av_log(&imgutils, AV_LOG_ERROR, "Picture size %ux%u is invalid\n", w, h);
return AVERROR(EINVAL);
}