summaryrefslogtreecommitdiff
path: root/libavutil/imgutils.h
diff options
context:
space:
mode:
authorClément Bœsch <u@pkh.me>2017-04-03 20:41:16 +0200
committerClément Bœsch <u@pkh.me>2017-04-03 20:41:16 +0200
commit47d8410daca4aaf08bc886eb6d08e6fafe4fb6f1 (patch)
treeff3fb55fddf4f6fa20e02cf18b3a5f0db75685ef /libavutil/imgutils.h
parentab827a8349f50a2596ef1e57b54b4436f936bf13 (diff)
parenta1d9de304fe63614e3aa8117fef17491fa80093d (diff)
downloadffmpeg-47d8410daca4aaf08bc886eb6d08e6fafe4fb6f1.tar.gz
Merge commit 'a1d9de304fe63614e3aa8117fef17491fa80093d'
* commit 'a1d9de304fe63614e3aa8117fef17491fa80093d': Fix some mismatches between function parameter and doxygen parameter names. Merged-by: Clément Bœsch <u@pkh.me>
Diffstat (limited to 'libavutil/imgutils.h')
-rw-r--r--libavutil/imgutils.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavutil/imgutils.h b/libavutil/imgutils.h
index a4a5efcc66..ea083b10f1 100644
--- a/libavutil/imgutils.h
+++ b/libavutil/imgutils.h
@@ -155,7 +155,7 @@ void av_image_copy_uc_from(uint8_t *dst_data[4], const ptrdiff_t dst_lines
* one call, use av_image_alloc().
*
* @param dst_data data pointers to be filled in
- * @param dst_linesizes linesizes for the image in dst_data to be filled in
+ * @param dst_linesize linesizes for the image in dst_data to be filled in
* @param src buffer which will contain or contains the actual image data, can be NULL
* @param pix_fmt the pixel format of the image
* @param width the width of the image in pixels
@@ -185,7 +185,7 @@ int av_image_get_buffer_size(enum AVPixelFormat pix_fmt, int width, int height,
* @param dst a buffer into which picture data will be copied
* @param dst_size the size in bytes of dst
* @param src_data pointers containing the source image data
- * @param src_linesizes linesizes for the image in src_data
+ * @param src_linesize linesizes for the image in src_data
* @param pix_fmt the pixel format of the source image
* @param width the width of the source image in pixels
* @param height the height of the source image in pixels