]> git.sesse.net Git - ffmpeg/blobdiff - libavcodec/cabac.c
tests/audio_fifo: fix buffer allocation for non planar formats
[ffmpeg] / libavcodec / cabac.c
index c0abe834cfa14199cc19dddcbe9cdae7b73b421c..dd2b057c6dd8391cd82ec090b52d07b3ea0ed4be 100644 (file)
@@ -182,7 +182,7 @@ int ff_init_cabac_decoder(CABACContext *c, const uint8_t *buf, int buf_size){
 #if CABAC_BITS == 16
     c->low =  (*c->bytestream++)<<18;
     c->low+=  (*c->bytestream++)<<10;
-    // Keep our fetches on a 2-byte boundry as this should avoid ever having to
+    // Keep our fetches on a 2-byte boundary as this should avoid ever having to
     // do unaligned loads if the compiler (or asm) optimises the double byte
     // load into a single instruction
     if(((uintptr_t)c->bytestream & 1) == 0) {