diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2003-03-06 14:42:07 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2003-03-06 14:42:07 +0000 |
commit | a1adf436cb4144f4bfc22c0aa915f6bc9e67db11 (patch) | |
tree | d65b63e71425ed1b103b1be6aaeab919c0becaa6 /libavcodec | |
parent | 277f4827fc51faec783270db2755d0ae3579be4e (diff) | |
download | ffmpeg-a1adf436cb4144f4bfc22c0aa915f6bc9e67db11.tar.gz |
typo
Originally committed as revision 1639 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/dsputil.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/dsputil.h b/libavcodec/dsputil.h index 0a06b4a545..edcdf38826 100644 --- a/libavcodec/dsputil.h +++ b/libavcodec/dsputil.h @@ -166,13 +166,13 @@ typedef struct DSPContext { /** * 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*/); |