diff options
author | wm4 <wm4@nowhere> | 2014-03-07 15:24:32 +0100 |
---|---|---|
committer | wm4 <wm4@nowhere> | 2014-03-09 00:19:31 +0100 |
commit | 41f2b26d11e81095a0d8d370480e0d2459208070 (patch) | |
tree | 1b665e392be25795b8fade6d0487609f73ac90d2 /audio/out/ao_rsound.c | |
parent | 74b7001500c0901b095986fafe7dca3e5c23c7f2 (diff) | |
download | mpv-41f2b26d11e81095a0d8d370480e0d2459208070.tar.bz2 mpv-41f2b26d11e81095a0d8d370480e0d2459208070.tar.xz |
audio/out: make ao struct opaque
We want to move the AO to its own thread. There's no technical reason
for making the ao struct opaque to do this. But it helps us sleep at
night, because we can control access to shared state better.
Diffstat (limited to 'audio/out/ao_rsound.c')
-rw-r--r-- | audio/out/ao_rsound.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/audio/out/ao_rsound.c b/audio/out/ao_rsound.c index 6bd99030a1..ef81c621da 100644 --- a/audio/out/ao_rsound.c +++ b/audio/out/ao_rsound.c @@ -33,6 +33,7 @@ #include "osdep/timer.h" #include "audio/format.h" #include "ao.h" +#include "internal.h" struct priv { rsound_t *rd; |