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

FLACStreamIdentifier.java « javaFlacEncoder « src - github.com/ClusterM/android-speech-recognition.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 60ddf4123c9d1d941cc16b43665b23e0cde01925 (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
/*
 * 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;

/**
 * Provides the stream identifier used at beginning of flac streams.
 * @author Preston Lacey
 */
public class FLACStreamIdentifier {
  static final byte streamMarkerByte1 = 0x66;
  static final byte streamMarkerByte2 = 0x4c;
  static final byte streamMarkerByte3 = 0x61;
  static final byte streamMarkerByte4 = 0x43;
  static final byte[] marker = {
    streamMarkerByte1,
    streamMarkerByte2,
    streamMarkerByte3,
    streamMarkerByte4,
  };

  /**
   * Get an EncodedElement containing the marker(which is itself in a byte
   * array).
   * @return EncodedElement containing the marker.
   */
  public static EncodedElement getIdentifier() {
    EncodedElement ele = new EncodedElement();
    ele.setData(marker.clone());
    ele.setUsableBits(32);
    return ele;
  }
}