少年修仙传客户端代码仓库
Client_PangDeRong
2018-09-21 d1a2ab5b56bae336a1b5cbc4f307cb67e76c22e6
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
85
86
87
88
89
90
namespace NSpeex
{
    using System;
 
    internal class Inband
    {
        private Stereo stereo;
 
        public Inband(Stereo stereo)
        {
            this.stereo = stereo;
        }
 
        public void SpeexInbandRequest(Bits bits)
        {
            switch (bits.Unpack(4))
            {
                case 0:
                    bits.Advance(1);
                    return;
 
                case 1:
                    bits.Advance(1);
                    return;
 
                case 2:
                    bits.Advance(4);
                    return;
 
                case 3:
                    bits.Advance(4);
                    return;
 
                case 4:
                    bits.Advance(4);
                    return;
 
                case 5:
                    bits.Advance(4);
                    return;
 
                case 6:
                    bits.Advance(4);
                    return;
 
                case 7:
                    bits.Advance(4);
                    return;
 
                case 8:
                    bits.Advance(8);
                    return;
 
                case 9:
                    this.stereo.Init(bits);
                    return;
 
                case 10:
                    bits.Advance(0x10);
                    return;
 
                case 11:
                    bits.Advance(0x10);
                    return;
 
                case 12:
                    bits.Advance(0x20);
                    return;
 
                case 13:
                    bits.Advance(0x20);
                    return;
 
                case 14:
                    bits.Advance(0x40);
                    return;
 
                case 15:
                    bits.Advance(0x40);
                    return;
            }
        }
 
        public void UserInbandRequest(Bits bits)
        {
            int num = bits.Unpack(4);
            bits.Advance(5 + (8 * num));
        }
    }
}