Skip to content

Commit

Permalink
Add FrameBuffer algorithm to essentia_algorithms_reg_2.cpp
Browse files Browse the repository at this point in the history
  • Loading branch information
wo80 committed Jun 29, 2024
1 parent 588f296 commit 0dbe4d2
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/algorithms/essentia_algorithms_reg_2.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -184,6 +184,7 @@
#include "algorithms/standard/ffta.h"
#include "algorithms/standard/fftacomplex.h"
#endif
#include "algorithms/standard/framebuffer.h"
#include "algorithms/standard/framecutter.h"
#include "algorithms/standard/frametoreal.h"
#include "algorithms/standard/idct.h"
Expand Down Expand Up @@ -491,6 +492,7 @@ ESSENTIA_API void registerAlgorithm() {
AlgorithmFactory::Registrar<IFFTA> regIFFTA;
AlgorithmFactory::Registrar<IFFTAComplex> regIFFTAComplex;
#endif
AlgorithmFactory::Registrar<FrameBuffer> regFrameBuffer;
AlgorithmFactory::Registrar<FrameCutter> regFrameCutter;
AlgorithmFactory::Registrar<FrameToReal> regFrameToReal;
AlgorithmFactory::Registrar<IDCT> regIDCT;
Expand Down Expand Up @@ -778,6 +780,7 @@ ESSENTIA_API void registerAlgorithm() {
AlgorithmFactory::Registrar<IFFTA, essentia::standard::IFFTA> regIFFTA;
AlgorithmFactory::Registrar<IFFTAComplex, essentia::standard::IFFTAComplex> regIFFTAComplex;
#endif
AlgorithmFactory::Registrar<FrameBuffer, essentia::standard::FrameBuffer> regFrameBuffer;
AlgorithmFactory::Registrar<FrameCutter, essentia::standard::FrameCutter> regFrameCutter;
AlgorithmFactory::Registrar<FrameToReal, essentia::standard::FrameToReal> regFrameToReal;
AlgorithmFactory::Registrar<IDCT, essentia::standard::IDCT> regIDCT;
Expand Down
2 changes: 2 additions & 0 deletions src/algorithms/standard/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ target_sources(essentia
dct.cpp
derivative.cpp
envelope.cpp
framebuffer.cpp
framecutter.cpp
frametoreal.cpp
idct.cpp
Expand Down Expand Up @@ -65,6 +66,7 @@ target_sources(essentia
dct.h
derivative.h
envelope.h
framebuffer.h
framecutter.h
frametoreal.h
idct.h
Expand Down

0 comments on commit 0dbe4d2

Please sign in to comment.