blob: 6ee8bf460475b997ab561bca60b9b845a2212eb8 (
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
53
|
AM_CXXFLAGS :=
lib_LTLIBRARIES = libmiav.la
libmiav_la_SOURCES = \
aa_socket.cc \
configuration.cc \
file.cc \
frame.cc \
info.cc \
info_simple.cc \
jpeg_mem_dest.cc \
libdv_wrapper.cc \
liblua_wrapper.cc \
mutex.cc \
network.cc \
semaphore.cc \
socket.cc \
status.cc \
thread.cc \
threadsafe_queue.cc \
threadsafe_queue_fifo.cc \
threadsafe_queue_priority.cc \
transcoder.cc \
util.cc
EXTRA_DIST = \
aa_socket.h \
configuration.h \
dv.h \
file.h \
frame.h \
frame_stream.h \
info.h \
info_simple.h \
jpeg_mem_dest.h \
libdv_wrapper.h \
liblua_wrapper.h \
mutex.h \
network.h \
package.h \
queue.h \
semaphore.h \
socket.h \
status.h \
thread.h \
threadsafe_queue.h \
threadsafe_queue_fifo.h \
threadsafe_queue_priority.h \
timecode.h \
transcoder.h \
util.h
|