forked from mia/Aegisub
Rename audio_spectrum.* to audio_renderer_spectrum.* in preparation of converting the spectrum into a slave of AudioRenderer. See #951 and #990.
Originally committed to SVN as r3398.
This commit is contained in:
parent
bb4207b380
commit
f810fd20ce
5 changed files with 5 additions and 5 deletions
|
@ -1800,11 +1800,11 @@
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\..\src\audio_spectrum.cpp"
|
RelativePath="..\..\src\audio_renderer_spectrum.cpp"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\..\src\audio_spectrum.h"
|
RelativePath="..\..\src\audio_renderer_spectrum.h"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
</Filter>
|
</Filter>
|
||||||
|
|
|
@ -201,7 +201,7 @@ aegisub_2_2_SOURCES = \
|
||||||
audio_provider_ram.cpp \
|
audio_provider_ram.cpp \
|
||||||
audio_provider_stream.cpp \
|
audio_provider_stream.cpp \
|
||||||
audio_renderer.cpp \
|
audio_renderer.cpp \
|
||||||
audio_spectrum.cpp \
|
audio_renderer_spectrum.cpp \
|
||||||
auto4_base.cpp \
|
auto4_base.cpp \
|
||||||
avisynth_wrap.cpp \
|
avisynth_wrap.cpp \
|
||||||
base_grid.cpp \
|
base_grid.cpp \
|
||||||
|
|
|
@ -49,7 +49,7 @@
|
||||||
#include <stdint.h>
|
#include <stdint.h>
|
||||||
#include "audio_provider_manager.h"
|
#include "audio_provider_manager.h"
|
||||||
#include "audio_player_manager.h"
|
#include "audio_player_manager.h"
|
||||||
#include "audio_spectrum.h"
|
#include "audio_renderer_spectrum.h"
|
||||||
|
|
||||||
|
|
||||||
//////////////
|
//////////////
|
||||||
|
|
|
@ -45,7 +45,7 @@
|
||||||
#ifdef _OPENMP
|
#ifdef _OPENMP
|
||||||
#include <omp.h>
|
#include <omp.h>
|
||||||
#endif
|
#endif
|
||||||
#include "audio_spectrum.h"
|
#include "audio_renderer_spectrum.h"
|
||||||
#include "fft.h"
|
#include "fft.h"
|
||||||
#include "colorspace.h"
|
#include "colorspace.h"
|
||||||
#include "options.h"
|
#include "options.h"
|
Loading…
Reference in a new issue