Welcome to mirror list, hosted at ThFree Co, Russian Federation.

CRC16.java « javaFlacEncoder « src - github.com/ClusterM/android-speech-recognition.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7af57923e0b3d8941717cf78daca873e7cc8e142 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
/*
 * Copyright (C) 2010  Preston Lacey http://javaflacencoder.sourceforge.net/
 * All Rights Reserved.
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
 */

package javaFlacEncoder;

/**
 * Class to calculate a CRC16 checksum.
 * @author Preston Lacey
 */
public class CRC16 {
  /** For Debugging: Higher level equals more debug statements */
  public static int DEBUG_LEV = 0;

  /** CRC Divisor: 0x8005(implicit 1 at MSB for 0x18005) */
  static final int divisorCRC16 = 0x8005;

  /** working checksum stored between calls to update(..) */
  protected int workingCRC;

  private static final short xorTable[] = generateTable();

  /**
   * Constructor. Creates a CRC16 object that is ready to be used. Next step
   * would be to call update(...) with appropriate data.
   */
  public CRC16() {
    reset();
  }

  /**
   * Resets stored data, preparing object for a new checksum.
   */
  public void reset() {
    workingCRC = 0;
  }

  public short checksum() {
    return (short)(workingCRC & 0xFFFF);
  }

  public int update(byte input) {
    workingCRC = (workingCRC << 8)^xorTable[((workingCRC >>> 8)^input) & 0xFF];
    return workingCRC;
  }

  public int update(byte[] input, int start, int stop) {
    for(int i = start; i < stop; i++) {
      byte b = input[i];
      workingCRC = (workingCRC << 8) ^ xorTable[((workingCRC >>> 8)^b) & 0xFF];
    }
    return workingCRC;
  }

  private static short[] generateTable() {
    short[] table = new short[256];
    for(int i = 0; i < table.length; i++) {
      int polynomial = divisorCRC16;
      int xorVal = i << 8;
      int topmask = 1 << 16;
      for(int x = 0; x < 8; x++ ) {
        xorVal = xorVal << 1;
        if( (xorVal & topmask) > 0) xorVal = (xorVal) ^ polynomial;
      }
      table[i] = (short)(xorVal & 0xFFFF);
    }
    return table;
  }
}