Skip to content

Commit

Permalink
remove Filter abstract type
Browse files Browse the repository at this point in the history
  • Loading branch information
wheeheee committed Feb 12, 2024
1 parent 2c51b22 commit 8549498
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/Filters/stream_filt.jl
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
const PFB{T} = Matrix{T} # polyphase filter bank

abstract type Filter end
abstract type FIRKernel{T} end

# Single rate FIR kernel
Expand Down Expand Up @@ -137,7 +136,7 @@ end


# FIRFilter - the kernel does the heavy lifting
mutable struct FIRFilter{Tk<:FIRKernel} <: Filter
mutable struct FIRFilter{Tk<:FIRKernel}
kernel::Tk
history::Vector
historyLen::Int
Expand Down

0 comments on commit 8549498

Please sign in to comment.