blob: 38e871c23e08f589caacf4a3a808bdc0875980ec (
plain) (
blame)
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
|
include(../../plugins.pri)
TARGET = $$PLUGINS_PREFIX/Input/ffmpeg
HEADERS += decoderffmpegfactory.h \
decoder_ffmpeg.h \
settingsdialog.h \
ffmpegmetadatamodel.h \
replaygainreader.h \
decoder_ffmpegcue.h \
decoder_ffmpegm4b.h
SOURCES += decoder_ffmpeg.cpp \
decoderffmpegfactory.cpp \
settingsdialog.cpp \
ffmpegmetadatamodel.cpp \
replaygainreader.cpp \
decoder_ffmpegcue.cpp \
decoder_ffmpegm4b.cpp
FORMS += settingsdialog.ui
RESOURCES = translations/translations.qrc
DEFINES += __STDC_CONSTANT_MACROS
unix {
target.path = $$PLUGIN_DIR/Input
INSTALLS += target
PKGCONFIG += libavcodec libavformat libavutil taglib
}
win32 {
LIBS += -lavcodec.dll -lavformat.dll -lavutil.dll -ltag.dll
}
|