diff options
author | Michael Niedermayer <michael@niedermayer.cc> | 2016-12-11 22:51:23 +0100 |
---|---|---|
committer | Michael Niedermayer <michael@niedermayer.cc> | 2016-12-16 02:07:32 +0100 |
commit | d4c1cc2b876af1e8f1a8ca258bf092b3baa31245 (patch) | |
tree | 873254aa62877e34e50516b5af4a09c7e1b30618 /libavutil | |
parent | 6672a49e5a38664ae5011ef759a12e81090404f8 (diff) | |
download | ffmpeg-d4c1cc2b876af1e8f1a8ca258bf092b3baa31245.tar.gz |
avutil/imgutils: Clarify doxy for av_image_check_size2()
Reviewed-by: Andreas Cadhalpun <andreas.cadhalpun@googlemail.com>
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
Diffstat (limited to 'libavutil')
-rw-r--r-- | libavutil/imgutils.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libavutil/imgutils.h b/libavutil/imgutils.h index 19f34deced..40aee8b98e 100644 --- a/libavutil/imgutils.h +++ b/libavutil/imgutils.h @@ -193,7 +193,8 @@ int av_image_check_size(unsigned int w, unsigned int h, int log_offset, void *lo /** * Check if the given dimension of an image is valid, meaning that all - * bytes of the image can be addressed with a signed int. + * bytes of a plane of an image with the specified pix_fmt can be addressed + * with a signed int. * * @param w the width of the picture * @param h the height of the picture |