From dfdc4c38f9c192f6cdc705dd1768a466addd00aa Mon Sep 17 00:00:00 2001 From: Armin Novak Date: Mon, 14 Mar 2016 09:01:57 +0100 Subject: [PATCH] Fixed comments. --- libfreerdp/primitives/prim_YUV.c | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/libfreerdp/primitives/prim_YUV.c b/libfreerdp/primitives/prim_YUV.c index 14882b1c0..9e8b293ed 100644 --- a/libfreerdp/primitives/prim_YUV.c +++ b/libfreerdp/primitives/prim_YUV.c @@ -38,11 +38,13 @@ static INLINE BYTE CLIP(INT32 X) /** * @brief general_YUV420CombineToYUV444 * - * @param pSrc Pointer to auxilary YUV420 data - * @param srcStep Step width in auxilary YUV420 data - * @param pDst Pointer to main YUV420 data - * @param dstStep Step width in main YUV420 data - * @param roi Area information for YUV420 data + * @param pMainSrc Pointer to luma YUV420 data + * @param srcMainStep Step width in luma YUV420 data + * @param pAuxSrc Pointer to chroma YUV420 data + * @param srcAuxStep Step width in chroma YUV420 data + * @param pDst Pointer to YUV444 data + * @param dstStep Step width in YUV444 data + * @param roi Region of source to combine in destination. * * @return PRIMITIVES_SUCCESS on success, an error code otherwise. */