diff options
author | Diego Biurrun <diego@biurrun.de> | 2012-12-19 18:48:21 +0100 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2012-12-21 00:18:34 +0100 |
commit | 511cf612ac979f536fd65e14603a87ca5ad435f3 (patch) | |
tree | 44bef1bf9a062368bf4ab89485279549af8bda90 /libavcodec/indeo3data.h | |
parent | 6906b19346ae8a330bfaa1c16ce535be10789723 (diff) | |
download | ffmpeg-511cf612ac979f536fd65e14603a87ca5ad435f3.tar.gz |
miscellaneous typo fixes
Diffstat (limited to 'libavcodec/indeo3data.h')
-rw-r--r-- | libavcodec/indeo3data.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/indeo3data.h b/libavcodec/indeo3data.h index 2ef8ea74bd..28c9bb6061 100644 --- a/libavcodec/indeo3data.h +++ b/libavcodec/indeo3data.h @@ -235,7 +235,7 @@ /** * Pack two delta values (a,b) into one 16bit word - * according with endianess of the host machine. + * according with endianness of the host machine. */ #if HAVE_BIGENDIAN #define PD(a,b) (((a) << 8) + (b)) @@ -282,7 +282,7 @@ static const int16_t delta_tab_3_5[79] = { TAB_3_5 }; /** * Pack four delta values (a,a,b,b) into one 32bit word - * according with endianess of the host machine. + * according with endianness of the host machine. */ #if HAVE_BIGENDIAN #define PD(a,b) (((a) << 24) + ((a) << 16) + ((b) << 8) + (b)) |