blob: 8dfcf71770b1fd333c14a0d81eca682ca83ef0bb (
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
|
lib_LTLIBRARIES = liblrtp.la
liblrtp_la_LIBADD = $(SRTP_LIBS)
liblrtp_la_CXXFLAGS = $(SRTP_CXXFLAGS)
liblrtp_la_SOURCES = \
lrtp.cc \
rtp.cc \
srtp.cc \
rtp_profile_amrwb.cc \
rtp_profile_opus.cc \
rtp_profile_l16.cc \
rtp_profile_raw.cc \
rtp_profile_jpeg.cc \
asc2bin.cc
include_HEADERS = \
lrtp.h \
lrtp_profiles.h
EXTRA_DIST = \
compat.h \
rtp_profile.h \
rtp_profile_amrwb.h \
rtp_profile_opus.h \
rtp_profile_l16.h \
rtp_profile_raw.h \
rtp_profile_jpeg.h \
rtp.h \
srtp.h \
asc2bin.h
|