# HG changeset patch # User michaelni # Date 1046961727 0 # Node ID 54dc72414a69b98d70ad77c2d3f241323fab5f87 # Parent d4096635b7b913f9dfe2fb6631aceaf6bbd96faf typo diff -r d4096635b7b9 -r 54dc72414a69 dsputil.h --- a/dsputil.h Thu Mar 06 14:37:37 2003 +0000 +++ b/dsputil.h Thu Mar 06 14:42:07 2003 +0000 @@ -166,13 +166,13 @@ /** * block -> idct -> clip to unsigned 8 bit -> dest. * (-1392, 0, 0, ...) -> idct -> (-174, -174, ...) -> put -> (0, 0, ...) - * @param line_size size in pixels of a horizotal line of dest + * @param line_size size in bytes of a horizotal line of dest */ void (*idct_put)(uint8_t *dest/*align 8*/, int line_size, DCTELEM *block/*align 16*/); /** * block -> idct -> add dest -> clip to unsigned 8 bit -> dest. - * @param line_size size in pixels of a horizotal line of dest + * @param line_size size in bytes of a horizotal line of dest */ void (*idct_add)(uint8_t *dest/*align 8*/, int line_size, DCTELEM *block/*align 16*/);