Browse Source
Merge pull request #4720 from lioncash/header
audio_core: Remove unnecessary inclusions
pull/15/merge
bunnei
5 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with
2 additions and
7 deletions
-
src/audio_core/audio_renderer.cpp
-
src/audio_core/audio_renderer.h
-
src/audio_core/command_generator.h
-
src/audio_core/common.h
-
src/audio_core/stream.cpp
|
|
|
@ -3,16 +3,13 @@ |
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#include <vector>
|
|
|
|
#include "audio_core/algorithm/interpolate.h"
|
|
|
|
|
|
|
|
#include "audio_core/audio_out.h"
|
|
|
|
#include "audio_core/audio_renderer.h"
|
|
|
|
#include "audio_core/codec.h"
|
|
|
|
#include "audio_core/common.h"
|
|
|
|
#include "audio_core/info_updater.h"
|
|
|
|
#include "audio_core/voice_context.h"
|
|
|
|
#include "common/assert.h"
|
|
|
|
#include "common/logging/log.h"
|
|
|
|
#include "core/core.h"
|
|
|
|
#include "core/hle/kernel/writable_event.h"
|
|
|
|
#include "core/memory.h"
|
|
|
|
#include "core/settings.h"
|
|
|
|
|
|
|
|
@ -21,7 +21,6 @@ |
|
|
|
#include "common/common_funcs.h" |
|
|
|
#include "common/common_types.h" |
|
|
|
#include "common/swap.h" |
|
|
|
#include "core/hle/kernel/object.h" |
|
|
|
#include "core/hle/result.h" |
|
|
|
|
|
|
|
namespace Core::Timing { |
|
|
|
|
|
|
|
@ -7,7 +7,6 @@ |
|
|
|
#include <array> |
|
|
|
#include "audio_core/common.h" |
|
|
|
#include "audio_core/voice_context.h" |
|
|
|
#include "common/common_funcs.h" |
|
|
|
#include "common/common_types.h" |
|
|
|
|
|
|
|
namespace Core::Memory { |
|
|
|
|
|
|
|
@ -3,6 +3,7 @@ |
|
|
|
// Refer to the license.txt file included. |
|
|
|
|
|
|
|
#pragma once |
|
|
|
|
|
|
|
#include "common/common_funcs.h" |
|
|
|
#include "common/common_types.h" |
|
|
|
#include "common/swap.h" |
|
|
|
|
|
|
|
@ -12,7 +12,6 @@ |
|
|
|
#include "common/assert.h"
|
|
|
|
#include "common/logging/log.h"
|
|
|
|
#include "core/core_timing.h"
|
|
|
|
#include "core/core_timing_util.h"
|
|
|
|
#include "core/settings.h"
|
|
|
|
|
|
|
|
namespace AudioCore { |
|
|
|
|