summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2013-11-10 23:24:50 +0100
committerwm4 <wm4@nowhere>2013-11-12 23:28:21 +0100
commitd1ee9ea261798f94fe958578d9748a69864c3058 (patch)
tree1d3685a600deb28ed469105eb3481def3dfb96be /Makefile
parent380fc765e4ad4e3ff828c9b0bd4a565ea2ba79ed (diff)
downloadmpv-d1ee9ea261798f94fe958578d9748a69864c3058.tar.bz2
mpv-d1ee9ea261798f94fe958578d9748a69864c3058.tar.xz
audio: add mp_audio_buffer
Implementation wise, this could be much improved, such as using a ringbuffer that doesn't require copying data all the time. This is why we don't use mp_audio directly instead of mp_audio_buffer.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile1
1 files changed, 1 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index ccf845e1a1..31ee25362f 100644
--- a/Makefile
+++ b/Makefile
@@ -140,6 +140,7 @@ endif
SOURCES-$(DLOPEN) += video/filter/vf_dlopen.c
SOURCES = audio/audio.c \
+ audio/audio_buffer.c \
audio/chmap.c \
audio/chmap_sel.c \
audio/fmt-conversion.c \