-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathudpserver.pro
85 lines (76 loc) · 1.9 KB
/
udpserver.pro
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
#-------------------------------------------------
#
# Project created by QtCreator 2015-12-03T16:45:25
#
#-------------------------------------------------
QT += core gui
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
TARGET = udpserver
TEMPLATE = app
QMAKE_CFLAGS += -I/usr/local/include -I$(MFX_HOME)/include
QMAKE_CXXFLAGS += -I/usr/local/include -I$(MFX_HOME)/include
QMAKE_LIBS += -L$(MFX_HOME)/lib/lin_x64 -lmfx -lva -lva-drm -lpthread -lrt -ldl
QMAKE_CXXFLAGS += -Wpointer-arith
INCLUDEPATH += /opt/intel/mediasdk/include
INCLUDEPATH += /usr/local/include
LIBS += -lavcodec -lavfilter -lavformat -lavutil -lswresample -lswscale
LIBS += -L/usr/local/lib/ -lfaac -L/usr/local/
SOURCES += main.cpp\
mainwindow.cpp \
udp.cpp \
udpsocket.cpp \
tspoolqueue.cpp \
transcodepool.cpp \
audio_encode.cpp \
pipeline_encode.cpp \
one_process.cpp \
base_allocator.cpp \
vaapi_device.cpp \
vaapi_utils.cpp \
vaapi_utils_drm.cpp \
utils.cpp \
sysmem_allocator.cpp \
outudppool.cpp \
pipeline_decode.cpp \
decodepool.cpp \
plugin_utils.cpp \
mfx_buffering.cpp \
time_def.cpp \
thread_defs.cpp \
atomic_defs.cpp \
thread_defs2.cpp
HEADERS += mainwindow.h \
udp.h \
udpsocket.h \
tspoolqueue.h \
transcodepool.h \
audio_encode.h \
pipeline_encode.h \
one_process.h \
base_allocator.h \
vaapi_device.h \
vaapi_utils.h \
vaapi_utils_drm.h \
hw_device.h \
utils.h \
sysmem_allocator.h \
global.h \
values.h \
outudppool.h \
sparams.h \
pipeline_decode.h \
decodepool.h \
sample_defs.h \
atomic_defs.h \
file_defs.h \
so_defs.h \
strings_defs.h \
thread_defs.h \
time_defs.h \
sample_params.h \
plugin_utils.h \
sample_types.h \
avc_structures.h \
plugin_loader.h \
mfx_buffering.h
FORMS += mainwindow.ui