2023-11-12 16:13:24 +00:00
|
|
|
#-------------------------------------------------
|
|
|
|
#
|
|
|
|
# Project created by QtCreator 2019-09-23T11:02:49
|
|
|
|
#
|
|
|
|
#-------------------------------------------------
|
|
|
|
QT += core gui
|
|
|
|
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
|
|
|
|
|
|
|
|
QT += network
|
2023-12-17 16:33:54 +00:00
|
|
|
QT += multimedia charts
|
2023-11-12 16:13:24 +00:00
|
|
|
TARGET = yuvgl
|
|
|
|
|
|
|
|
|
2023-11-29 16:22:43 +00:00
|
|
|
INCLUDEPATH += $$[QT_INSTALL_HEADERS]/QtZlib \
|
|
|
|
media/
|
2023-11-12 16:13:24 +00:00
|
|
|
|
|
|
|
include(G:\\project\\c++qt\\qsswraper\\qsswraper.pri)
|
|
|
|
|
|
|
|
# The following define makes your compiler emit warnings if you use
|
|
|
|
# any feature of Qt which has been marked as deprecated (the exact warnings
|
|
|
|
# depend on your compiler). Please consult the documentation of the
|
|
|
|
# deprecated API in order to know how to port your code away from it.
|
|
|
|
DEFINES += QT_DEPRECATED_WARNINGS
|
|
|
|
# You can also make your code fail to compile if you use deprecated APIs.
|
|
|
|
# In order to do so, uncomment the following line.
|
|
|
|
# You can also select to disable deprecated APIs only up to a certain version of Qt.
|
|
|
|
#DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0x060000 # disables all the APIs deprecated before Qt 6.0.0
|
|
|
|
|
|
|
|
CONFIG += C++11
|
|
|
|
|
|
|
|
DEFINES += WIN32_LEAN_AND_MEAN
|
|
|
|
|
|
|
|
SOURCES += \
|
|
|
|
components/toast.cpp \
|
|
|
|
librtmp/amf.c \
|
|
|
|
librtmp/hashswf.c \
|
|
|
|
librtmp/log.c \
|
|
|
|
librtmp/parseurl.c \
|
|
|
|
librtmp/rtmp.c \
|
|
|
|
main.cpp \
|
|
|
|
mainwindow.cpp \
|
|
|
|
cplaywidget.cpp \
|
|
|
|
media/AACAudioCoder.cpp \
|
|
|
|
media/AudioCapture.cpp \
|
|
|
|
media/CameraCapture.cpp \
|
|
|
|
media/DXGICapture.cpp \
|
|
|
|
media/RtmpPusher.cpp \
|
|
|
|
media/VideoCoder.cpp \
|
|
|
|
media/audiocaptureff.cpp \
|
2023-12-17 16:33:54 +00:00
|
|
|
media/audioplayerff.cpp \
|
2023-11-12 16:13:24 +00:00
|
|
|
media/screen_capture.cpp \
|
|
|
|
media/sps_decode.cpp \
|
2024-06-16 16:14:06 +00:00
|
|
|
media/streamcontrol.cpp \
|
2023-11-12 16:13:24 +00:00
|
|
|
utils/Debuger.cpp \
|
2024-06-16 16:14:06 +00:00
|
|
|
utils/screenshotwidget.cpp \
|
2023-11-12 16:13:24 +00:00
|
|
|
utils/utils.cpp
|
|
|
|
HEADERS += \
|
|
|
|
components/toast.h \
|
|
|
|
librtmp/strncasecmp.h \
|
|
|
|
mainwindow.h \
|
|
|
|
cplaywidget.h \
|
2023-12-17 16:33:54 +00:00
|
|
|
media/audioplayerff.h \
|
2023-11-29 16:22:43 +00:00
|
|
|
media/screen_capture.h \
|
2024-06-16 16:14:06 +00:00
|
|
|
media/streamcontrol.h \
|
|
|
|
utils/screenshotwidget.h \
|
2023-11-29 16:22:43 +00:00
|
|
|
utils/utils.h
|
2023-11-12 16:13:24 +00:00
|
|
|
|
|
|
|
|
|
|
|
FORMS += \
|
|
|
|
components/toast.ui \
|
|
|
|
mainwindow.ui
|
|
|
|
|
|
|
|
|
|
|
|
contains(DEFINES, __MINGW32__){
|
|
|
|
message("mingw")
|
|
|
|
INCLUDEPATH += media/ inc/
|
|
|
|
contains(QT_ARCH, i386) {
|
|
|
|
message("32-bit")
|
|
|
|
LIBS += -L$$PWD/third/ffmpeg/mingw/32/lib
|
|
|
|
LIBS += -lm -lavformat -lavdevice -lavfilter -lavcodec -lavutil -lswresample -lswscale -lpthread -lm -lfdk-aac -lx264 -liconv -lucrtbase -lstrmiids
|
|
|
|
LIBS += -lole32 -loleAut32 -lquartz -ldxguid -ldxapi -lwinmm -lbcrypt -lssl -lcrypto -lGdi32 -lws2_32 -lbz2 -lz -lportaudio -lshlwapi -lvfw32 -lpostproc -luuid
|
|
|
|
} else {
|
|
|
|
message("64-bit")
|
|
|
|
}
|
2023-11-29 16:22:43 +00:00
|
|
|
|
|
|
|
}else{
|
2023-11-12 16:13:24 +00:00
|
|
|
message("msvc")
|
|
|
|
|
|
|
|
|
|
|
|
DEFINES += _CRT_SECURE_NO_DEPRECATE \
|
|
|
|
_CRT_NONSTDC_NO_DEPRECATE
|
|
|
|
|
|
|
|
|
|
|
|
contains(QT_ARCH, i386) {
|
2023-11-29 16:22:43 +00:00
|
|
|
INCLUDEPATH += inc $$PWD/third/fdk-aac/include \
|
2023-11-12 16:13:24 +00:00
|
|
|
$$PWD/third/msvc32/libx264/include \
|
|
|
|
$$PWD/third/msvc32/ffmpeg/include \
|
|
|
|
$$PWD/third/msvc32/openssl/include
|
|
|
|
|
|
|
|
LIBS += -L$$PWD/third/msvc32/libx264/lib
|
|
|
|
LIBS += -L$$PWD/third/msvc32/fdk-aac/lib
|
|
|
|
LIBS += -L$$PWD/third/msvc32/ffmpeg/lib
|
|
|
|
LIBS += -L$$PWD/third/msvc32/openssl/lib
|
|
|
|
|
|
|
|
LIBS += libavfilter.a libavdevice.a libavcodec.a libpostproc.a \
|
|
|
|
libavformat.a libavutil.a \
|
|
|
|
libswresample.a libswscale.a fdk-aac.lib ws2_32.lib libeay32.lib ssleay32.lib \
|
2023-11-29 16:22:43 +00:00
|
|
|
shell32.lib gdi32.lib crypt32.lib User32.lib GDI32.lib Advapi32.lib Secur32.lib \
|
2023-11-12 16:13:24 +00:00
|
|
|
Bcrypt.lib Kernel32.lib portaudio_x86.lib ole32.lib oleaut32.lib strmiids.lib libx264.lib d3d9.lib
|
|
|
|
|
|
|
|
}
|
|
|
|
else{
|
|
|
|
message("64-bit")
|
2023-11-29 16:22:43 +00:00
|
|
|
INCLUDEPATH += inc $$PWD/third/fdk-aac/include \
|
|
|
|
$$PWD/third/ffmpeg/include \
|
|
|
|
$$PWD/third/openssl_1_0_2/include \
|
|
|
|
$$PWD/third/libx264/include \
|
|
|
|
include
|
|
|
|
|
|
|
|
|
|
|
|
LIBS += -L$$PWD/third/openssl_1_0_2/lib
|
|
|
|
LIBS += -L$$PWD/third/ffmpeg/lib
|
|
|
|
LIBS += -L$$PWD/third/fdk-aac/lib
|
|
|
|
LIBS += -L$$PWD/third/portaudio/lib
|
|
|
|
LIBS += -L$$PWD/third/libx264/lib/x64
|
|
|
|
|
|
|
|
|
|
|
|
LIBS += avfilter.lib avdevice.lib libavcodec.dll.a postproc.lib \
|
|
|
|
libavformat.dll.a libavutil.dll.a \
|
|
|
|
libswresample.dll.a libswscale.dll.a fdk-aac.lib ws2_32.lib libeay32.lib ssleay32.lib \
|
|
|
|
shell32.lib gdi32.lib crypt32.lib User32.lib GDI32.lib Advapi32.lib Secur32.lib \
|
|
|
|
Bcrypt.lib Kernel32.lib portaudio_x64.lib ole32.lib oleaut32.lib strmiids.lib libx264.lib d3d9.lib
|
|
|
|
|
2023-11-12 16:13:24 +00:00
|
|
|
|
|
|
|
QMAKE_CXXFLAGS_RELEASE += -Zi
|
|
|
|
QMAKE_LFLAGS_RELEASE += /DEBUG /OPT:REF
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
qnx: target.path = /tmp/$${TARGET}/bin
|
|
|
|
else: unix:!android: target.path = /opt/$${TARGET}/bin
|
|
|
|
!isEmpty(target.path): INSTALLS += target
|
|
|
|
|
2023-12-10 17:02:28 +00:00
|
|
|
RESOURCES += \
|
|
|
|
qss/qss.qrc
|
|
|
|
|