From 50c4feb6bb1eaff51a35d427fb6f3f5675da1aff Mon Sep 17 00:00:00 2001 From: f4exb Date: Tue, 9 Jul 2024 02:02:31 +0200 Subject: [PATCH] WDSP: fixed some unresolved externals --- wdsp/bldr.cpp | 2 +- wdsp/compress.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/wdsp/bldr.cpp b/wdsp/bldr.cpp index 073423c5c..ddbbb9c16 100644 --- a/wdsp/bldr.cpp +++ b/wdsp/bldr.cpp @@ -110,7 +110,7 @@ void BLDR::destroy_builder(BLDR *a) delete(a); } -void BLDRflush_builder(BLDR *a, int points, int ints) +void BLDR::flush_builder(BLDR *a, int points, int ints) { memset(a->catxy, 0, 2 * points * sizeof(float)); memset(a->sx, 0, points * sizeof(float)); diff --git a/wdsp/compress.cpp b/wdsp/compress.cpp index e9038b4ca..7d4d508c9 100644 --- a/wdsp/compress.cpp +++ b/wdsp/compress.cpp @@ -34,7 +34,7 @@ in the January 2010 issue of RadCom magazine. namespace WDSP { -COMPRESSOR* create_compressor ( +COMPRESSOR* COMPRESSOR::create_compressor ( int run, int buffsize, float* inbuff,