mirror of
https://github.com/videolan/vlc.git
synced 2024-11-25 10:53:36 +08:00
Spatializer: add the remaining files, add a correct check in configure, fix dist
This commit is contained in:
parent
97d10a66dd
commit
6f77623a8c
@ -587,7 +587,7 @@ AC_CHECK_LIB(m,cos,[
|
||||
VLC_ADD_LDFLAGS([adjust wave ripple psychedelic gradient a52tofloat32 dtstofloat32 x264 goom visual panoramix rotate noise grain],[-lm])
|
||||
])
|
||||
AC_CHECK_LIB(m,pow,[
|
||||
VLC_ADD_LDFLAGS([ffmpeg ffmpegaltivec stream_out_transrate i420_rgb faad twolame equalizer param_eq libvlc vorbis freetype mod mpc dmo quicktime realaudio galaktos opengl],[-lm])
|
||||
VLC_ADD_LDFLAGS([ffmpeg ffmpegaltivec stream_out_transrate i420_rgb faad twolame equalizer spatializer param_eq libvlc vorbis freetype mod mpc dmo quicktime realaudio galaktos opengl],[-lm])
|
||||
])
|
||||
AC_CHECK_LIB(m,sqrt,[
|
||||
VLC_ADD_LDFLAGS([headphone_channel_mixer normvol speex mono colorthres extract],[-lm])
|
||||
|
@ -42,6 +42,7 @@ nodist_SOURCES_qt4 = \
|
||||
util/customwidgets.moc.cpp \
|
||||
resources.cpp \
|
||||
ui/equalizer.h \
|
||||
ui/spatializer.h \
|
||||
ui/video_effects.h \
|
||||
ui/open_file.h \
|
||||
ui/open_disk.h \
|
||||
@ -151,6 +152,7 @@ noinst_HEADERS = \
|
||||
EXTRA_DIST += \
|
||||
res.qrc \
|
||||
ui/equalizer.ui \
|
||||
ui/spatializer.ui \
|
||||
ui/video_effects.ui \
|
||||
ui/open_file.ui \
|
||||
ui/open_disk.ui \
|
||||
|
@ -29,7 +29,7 @@
|
||||
|
||||
#include "ui/equalizer.h"
|
||||
#include "ui/video_effects.h"
|
||||
//#include "ui/spatializer.h"
|
||||
#include "ui/spatializer.h"
|
||||
|
||||
#define BANDS 10
|
||||
#define NUM_SP_CTRL 5
|
||||
|
53
modules/gui/qt4/ui/spatializer.ui
Normal file
53
modules/gui/qt4/ui/spatializer.ui
Normal file
@ -0,0 +1,53 @@
|
||||
<ui version="4.0" >
|
||||
<class>SpatializerWidget</class>
|
||||
<widget class="QWidget" name="SpatializerWidget" >
|
||||
<property name="geometry" >
|
||||
<rect>
|
||||
<x>0</x>
|
||||
<y>0</y>
|
||||
<width>409</width>
|
||||
<height>299</height>
|
||||
</rect>
|
||||
</property>
|
||||
<property name="windowTitle" >
|
||||
<string>Form</string>
|
||||
</property>
|
||||
<widget class="QCheckBox" name="enableCheck" >
|
||||
<property name="geometry" >
|
||||
<rect>
|
||||
<x>30</x>
|
||||
<y>10</y>
|
||||
<width>91</width>
|
||||
<height>23</height>
|
||||
</rect>
|
||||
</property>
|
||||
<property name="text" >
|
||||
<string>_("Enable")</string>
|
||||
</property>
|
||||
</widget>
|
||||
<widget class="QWidget" name="horizontalLayout" >
|
||||
<property name="geometry" >
|
||||
<rect>
|
||||
<x>10</x>
|
||||
<y>40</y>
|
||||
<width>391</width>
|
||||
<height>251</height>
|
||||
</rect>
|
||||
</property>
|
||||
<layout class="QHBoxLayout" >
|
||||
<item>
|
||||
<widget class="QFrame" name="frame" >
|
||||
<property name="frameShape" >
|
||||
<enum>QFrame::StyledPanel</enum>
|
||||
</property>
|
||||
<property name="frameShadow" >
|
||||
<enum>QFrame::Raised</enum>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
</layout>
|
||||
</widget>
|
||||
</widget>
|
||||
<resources/>
|
||||
<connections/>
|
||||
</ui>
|
Loading…
Reference in New Issue
Block a user