aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.HLE/HOS/Services/Aud/IHardwareOpusDecoderManager.cs
blob: 875dc74c34df75fa00bf3c4930003d98b6d26379 (plain) (blame)
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
using Ryujinx.HLE.HOS.Ipc;
using System.Collections.Generic;

namespace Ryujinx.HLE.HOS.Services.Aud
{
    class IHardwareOpusDecoderManager : IpcService
    {
        private Dictionary<int, ServiceProcessRequest> m_Commands;

        public override IReadOnlyDictionary<int, ServiceProcessRequest> Commands => m_Commands;

        public IHardwareOpusDecoderManager()
        {
            m_Commands = new Dictionary<int, ServiceProcessRequest>()
            {
                { 0, Initialize        },
                { 1, GetWorkBufferSize }
            };
        }

        public long Initialize(ServiceCtx Context)
        {
            int SampleRate    = Context.RequestData.ReadInt32();
            int ChannelsCount = Context.RequestData.ReadInt32();

            MakeObject(Context, new IHardwareOpusDecoder(SampleRate, ChannelsCount));

            return 0;
        }

        public long GetWorkBufferSize(ServiceCtx Context)
        {
            //Note: The sample rate is ignored because it is fixed to 48KHz.
            int SampleRate    = Context.RequestData.ReadInt32();
            int ChannelsCount = Context.RequestData.ReadInt32();

            Context.ResponseData.Write(GetOpusDecoderSize(ChannelsCount));

            return 0;
        }

        private static int GetOpusDecoderSize(int ChannelsCount)
        {
            const int SilkDecoderSize = 0x2198;

            if (ChannelsCount < 1 || ChannelsCount > 2)
            {
                return 0;
            }

            int CeltDecoderSize = GetCeltDecoderSize(ChannelsCount);

            int OpusDecoderSize = (ChannelsCount * 0x800 + 0x4807) & -0x800 | 0x50;

            return OpusDecoderSize + SilkDecoderSize + CeltDecoderSize;
        }

        private static int GetCeltDecoderSize(int ChannelsCount)
        {
            const int DecodeBufferSize = 0x2030;
            const int CeltDecoderSize  = 0x58;
            const int CeltSigSize      = 0x4;
            const int Overlap          = 120;
            const int EBandsCount      = 21;

            return (DecodeBufferSize + Overlap * 4) * ChannelsCount +
                    EBandsCount * 16 +
                    CeltDecoderSize +
                    CeltSigSize;
        }
    }
}