-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
First use of GIT for the project
- Loading branch information
Showing
245 changed files
with
96,018 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,128 @@ | ||
#------------------------------------------------- | ||
# | ||
# Project created by QtCreator 2020-04-06T04:15:14 | ||
# | ||
#------------------------------------------------- | ||
|
||
QT += core gui | ||
|
||
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets multimedia | ||
|
||
CONFIG += c++11 | ||
|
||
TARGET = SDVPCMdecoder | ||
TEMPLATE = app | ||
|
||
#LIBS += -L | ||
|
||
#QMAKE_CXXFLAGS += -O3 -march=pentium3m | ||
#QMAKE_CFLAGS += -O3 -march=pentium3m | ||
|
||
#QMAKE_CXXFLAGS += -fopenmp | ||
#QMAKE_LFLAGS += -fopenmp | ||
QMAKE_CXXFLAGS_RELEASE -= -O2 | ||
QMAKE_CXXFLAGS_RELEASE += -O3 -march=pentium3m | ||
|
||
QMAKE_CFLAGS_RELEASE -= -O2 | ||
QMAKE_CFLAGS_RELEASE += -O3 -march=pentium3m | ||
|
||
QMAKE_CXXFLAGS+= -D__STDC_CONSTANT_MACROS -fpermissive | ||
|
||
VERSION = 0.99.3 | ||
win32: QMAKE_TARGET_COMPANY = Fagear | ||
win32: QMAKE_TARGET_PRODUCT = SD video PCM decoder | ||
win32: QMAKE_TARGET_DESCRIPTION = SD video to digital audio PCM decoder | ||
win32: QMAKE_TARGET_COPYRIGHT = (c) Fagear | ||
win32: RC_LANG = 0x0419 | ||
|
||
SOURCES += main.cpp\ | ||
mainwindow.cpp \ | ||
videoline.cpp \ | ||
stc007line.cpp \ | ||
stc007datablock.cpp \ | ||
frametrimset.cpp \ | ||
stc007deinterleaver.cpp \ | ||
stc007towav.cpp \ | ||
audioprocessor.cpp \ | ||
stc007datastitcher.cpp \ | ||
vin_ffmpeg.cpp \ | ||
stc007toaudio.cpp \ | ||
circbuffer.cpp \ | ||
fine_bin_set.cpp \ | ||
fine_deint_set.cpp \ | ||
frame_vis.cpp \ | ||
fine_vidin_set.cpp \ | ||
pcm1line.cpp \ | ||
bin_preset_t.cpp \ | ||
pcmline.cpp \ | ||
binarizer.cpp \ | ||
pcmsamplepair.cpp \ | ||
videotodigital.cpp \ | ||
pcm16x0deinterleaver.cpp \ | ||
pcm16x0datastitcher.cpp \ | ||
pcm16x0datablock.cpp \ | ||
renderpcm.cpp \ | ||
pcm1deinterleaver.cpp \ | ||
pcm1datablock.cpp \ | ||
pcm1subline.cpp \ | ||
pcm1datastitcher.cpp \ | ||
about_wnd.cpp \ | ||
vid_preset_t.cpp \ | ||
pcmtester.cpp \ | ||
pcm16x0subline.cpp | ||
|
||
HEADERS += mainwindow.h \ | ||
videoline.h \ | ||
stc007line.h \ | ||
config.h \ | ||
stc007datablock.h \ | ||
frametrimset.h \ | ||
stc007deinterleaver.h \ | ||
stc007towav.h \ | ||
audioprocessor.h \ | ||
stc007datastitcher.h \ | ||
vin_ffmpeg.h \ | ||
stc007toaudio.h \ | ||
circbuffer.h \ | ||
audio_sample.h \ | ||
fine_bin_set.h \ | ||
fine_deint_set.h \ | ||
frame_vis.h \ | ||
fine_vidin_set.h \ | ||
pcm1line.h \ | ||
bin_preset_t.h \ | ||
pcmline.h \ | ||
binarizer.h \ | ||
pcmsamplepair.h \ | ||
videotodigital.h \ | ||
pcm16x0deinterleaver.h \ | ||
pcm16x0datastitcher.h \ | ||
pcm16x0datablock.h \ | ||
renderpcm.h \ | ||
pcm1deinterleaver.h \ | ||
pcm1datablock.h \ | ||
pcm1subline.h \ | ||
pcm1datastitcher.h \ | ||
about_wnd.h \ | ||
vid_preset_t.h \ | ||
pcmtester.h \ | ||
pcm16x0subline.h | ||
|
||
FORMS += mainwindow.ui \ | ||
fine_bin_set.ui \ | ||
fine_deint_set.ui \ | ||
frame_vis.ui \ | ||
fine_vidin_set.ui \ | ||
about_wnd.ui | ||
|
||
RESOURCES += \ | ||
icons.qrc \ | ||
images.qrc | ||
|
||
win32: RC_ICONS += pcm_ico.ico | ||
|
||
TRANSLATIONS += SDVPCMdecoder_en.ts SDVPCMdecoder_pl.ts | ||
|
||
CODECFORSRC = UTF-8 | ||
|
||
unix|win32: LIBS += -L$$PWD/lib/ -lavcodec -lavdevice -lavformat -lavutil -lswscale |
Oops, something went wrong.