bitstream: Trivial spelling fix auxillary -> auxiliary.
authorAndre Noll <maan@systemlinux.org>
Sat, 8 Mar 2014 12:16:10 +0000 (13:16 +0100)
committerAndre Noll <maan@systemlinux.org>
Tue, 22 Apr 2014 00:26:22 +0000 (02:26 +0200)
bitstream.c

index ddad67bb177211b3909f88d3be9dcb3d5c381238..d727896fbe107ce56451483074ffd6279268cbe2 100644 (file)
@@ -73,7 +73,7 @@ static int build_table(struct vlc *vlc, int table_nb_bits, int nb_codes,
                table[i][0] = -1;       //codes
        }
 
-       /* map codes and compute auxillary table sizes */
+       /* map codes and compute auxiliary table sizes */
        for (i = 0; i < nb_codes; i++) {
                GET_DATA(n, bits, i, 1);
                GET_DATA(code, codes, i, codes_size);
@@ -110,7 +110,7 @@ static int build_table(struct vlc *vlc, int table_nb_bits, int nb_codes,
                }
        }
 
-       /* fill auxillary tables recursively */
+       /* fill auxiliary tables recursively */
        for (i = 0; i < table_size; i++) {
                n = table[i][1];        //bits
                if (n < 0) {