]> git.sesse.net Git - ffmpeg/blobdiff - libavcodec/indeo3data.h
Merge remote-tracking branch 'qatar/master'
[ffmpeg] / libavcodec / indeo3data.h
index 0b5648eb204006c9f83e4aa2238f5eea8da1df36..e7e28a3b453aee4852021414d1c87ecaf368fc0b 100644 (file)
 
 /**
  * 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))