summaryrefslogtreecommitdiffstats
path: root/src/audio_core/hle/dsp.cpp
blob: c89356edc1603946dd1c41fcd8a88b1ba56fa809 (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
// Copyright 2016 Citra Emulator Project
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.

#include "audio_core/hle/dsp.h"
#include "audio_core/hle/pipe.h"

namespace DSP {
namespace HLE {

SharedMemory g_region0;
SharedMemory g_region1;

void Init() {
    DSP::HLE::ResetPipes();
}

void Shutdown() {
}

bool Tick() {
    return true;
}

SharedMemory& CurrentRegion() {
    // The region with the higher frame counter is chosen unless there is wraparound.

    if (g_region0.frame_counter == 0xFFFFu && g_region1.frame_counter != 0xFFFEu) {
        // Wraparound has occured.
        return g_region1;
    }

    if (g_region1.frame_counter == 0xFFFFu && g_region0.frame_counter != 0xFFFEu) {
        // Wraparound has occured.
        return g_region0;
    }

    return (g_region0.frame_counter > g_region1.frame_counter) ? g_region0 : g_region1;
}

} // namespace HLE
} // namespace DSP