diff options
author | Panagiotis Issaris <takis.issaris@uhasselt.be> | 2007-09-27 11:29:21 +0000 |
---|---|---|
committer | Panagiotis Issaris <takis.issaris@uhasselt.be> | 2007-09-27 11:29:21 +0000 |
commit | 9846cbdb13023ee506040a387c676a1c3a53606b (patch) | |
tree | dc9f7a66478d796ff4c0260d58b26dafa6c26fa5 | |
parent | 93f0c0a4ca2447b2bc1c05e032ee1ad1bdf9dcc5 (diff) | |
download | ffmpeg-9846cbdb13023ee506040a387c676a1c3a53606b.tar.gz |
cosmetics: typos
Originally committed as revision 10602 to svn://svn.ffmpeg.org/ffmpeg/trunk
-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 3d57f9bdf2..b91ea5a93b 100644 --- a/libavcodec/dsputil.h +++ b/libavcodec/dsputil.h @@ -348,13 +348,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 bytes of a horizotal line of dest + * @param line_size size in bytes of a horizontal 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 bytes of a horizotal line of dest + * @param line_size size in bytes of a horizontal line of dest */ void (*idct_add)(uint8_t *dest/*align 8*/, int line_size, DCTELEM *block/*align 16*/); |