GNU Radio Manual and C++ API Reference 3.10.5.1
The Free & Open Software Radio Ecosystem
interpolating_resampler_type.h
Go to the documentation of this file.
1/* -*- c++ -*- */
2/*
3 * Copyright (C) 2017 Free Software Foundation, Inc.
4 *
5 * This file is part of GNU Radio
6 *
7 * SPDX-License-Identifier: GPL-3.0-or-later
8 *
9 */
10
11#ifndef INCLUDED_DIGITAL_INTERPOLATING_RESAMPLER_TYPE_H
12#define INCLUDED_DIGITAL_INTERPOLATING_RESAMPLER_TYPE_H
13
14namespace gr {
15namespace digital {
16
17// Interpolating Resampler type
18enum ir_type {
19 IR_NONE = -1,
20 IR_MMSE_8TAP = 0, // Valid for [-Fs/4, Fs/4] bandlimited input
21 IR_PFB_NO_MF = 1, // No matched filtering, just interpolation
23};
24
25} /* namespace digital */
26} /* namespace gr */
27
28#endif /* INCLUDED_DIGITAL_INTERPOLATING_RESAMPLER_TYPE_H */
ir_type
Definition: interpolating_resampler_type.h:18
@ IR_MMSE_8TAP
Definition: interpolating_resampler_type.h:20
@ IR_PFB_NO_MF
Definition: interpolating_resampler_type.h:21
@ IR_NONE
Definition: interpolating_resampler_type.h:19
@ IR_PFB_MF
Definition: interpolating_resampler_type.h:22
GNU Radio logging wrapper.
Definition: basic_block.h:29