aboutsummaryrefslogtreecommitdiffstats
path: root/alc/backends/pulseaudio.cpp
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2022-09-23 01:34:15 -0700
committerChris Robinson <[email protected]>2022-09-23 01:34:15 -0700
commitb5d35008ed645857e46745e7b1744644fa4ea83e (patch)
treea72c71d134fc8088e732f0967040251374266104 /alc/backends/pulseaudio.cpp
parent8e8b371397c606656e2590833b945b84a4fab587 (diff)
Remove unnecessary includes and forward declarations
Diffstat (limited to 'alc/backends/pulseaudio.cpp')
-rw-r--r--alc/backends/pulseaudio.cpp7
1 files changed, 0 insertions, 7 deletions
diff --git a/alc/backends/pulseaudio.cpp b/alc/backends/pulseaudio.cpp
index 4d5ac0d8..f3fe856e 100644
--- a/alc/backends/pulseaudio.cpp
+++ b/alc/backends/pulseaudio.cpp
@@ -28,17 +28,13 @@
#include <atomic>
#include <bitset>
#include <chrono>
-#include <condition_variable>
#include <cstring>
-#include <functional>
#include <limits>
#include <mutex>
-#include <new>
#include <stdint.h>
#include <stdlib.h>
#include <string>
#include <sys/types.h>
-#include <thread>
#include <utility>
#include "albyte.h"
@@ -49,7 +45,6 @@
#include "alspan.h"
#include "core/devformat.h"
#include "core/device.h"
-#include "core/helpers.h"
#include "core/logging.h"
#include "dynload.h"
#include "opthelpers.h"
@@ -281,8 +276,6 @@ al::vector<DevMap> CaptureDevices;
/* Global flags and properties */
pa_context_flags_t pulse_ctx_flags;
-struct MainloopUniqueLock;
-
class PulseMainloop {
pa_threaded_mainloop *mLoop{};