forked from soiaf/C-Sharp-WavPack-Decoder
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwords_data.cs
More file actions
32 lines (30 loc) · 717 Bytes
/
words_data.cs
File metadata and controls
32 lines (30 loc) · 717 Bytes
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
/*
** words_data.cs
**
** Copyright (c) 2010-2016 Peter McQuillan
**
** All Rights Reserved.
**
** Distributed under the BSD Software License (see license.txt)
***/
namespace WavPack
{
class words_data
{
public words_data()
{
InitBlock();
}
private void InitBlock()
{
c = new entropy_data[] { temp_ed1, temp_ed2 };
}
internal long[] bitrate_delta = new long[2]; // was uint32_t in C
internal long[] bitrate_acc = new long[2]; // was uint32_t in C
internal long zeros_acc; // was uint32_t in C
internal bool holding_one, holding_zero;
internal entropy_data temp_ed1 = new entropy_data();
internal entropy_data temp_ed2 = new entropy_data();
internal entropy_data[] c;
}
}