blob: e430550e8e96cb8bbf40852636e06a9aa49b3b94 (
plain)
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
43
44
45
46
47
48
49
50
51
52
|
# liboutplugin - Makefile.am
INCLUDES = $(all_includes)
noinst_LTLIBRARIES = liboutput.la
noinst_HEADERS = windowOut.h \
audioData.h audioDataArray.h \
performance.h yuvDumper.h
kmpgincludedir = $(includedir)/$(THIS_LIB_NAME)/output
kmpginclude_HEADERS = outputStream.h pluginInfo.h \
outPlugin.h dspX11OutputStream.h \
artsOutputStream.h audioTime.h \
avSyncer.h threadSafeOutputStream.h
liboutput_la_SOURCES = outPlugin.cpp outputStream.cpp \
dspX11OutputStream.cpp \
windowOut.cpp \
audioTime.cpp \
audioData.cpp audioDataArray.cpp \
avSyncer.cpp performance.cpp \
artsOutputStream.cpp \
pluginInfo.cpp yuvDumper.cpp \
threadSafeOutputStream.cpp
|