blob: 22a6dba8aa45de677e3eaa1fa5655dfa671c9fc9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
|
/* -*- c++ -*- */
/*
* Copyright 2004,2012 Free Software Foundation, Inc.
*
* This file is part of GNU Radio
*
* SPDX-License-Identifier: GPL-3.0-or-later
*
*/
#ifndef INCLUDED_TRELLIS_PERMUTATION_IMPL_H
#define INCLUDED_TRELLIS_PERMUTATION_IMPL_H
#include <gnuradio/trellis/api.h>
#include <gnuradio/trellis/permutation.h>
namespace gr {
namespace trellis {
class permutation_impl : public permutation
{
private:
int d_K;
std::vector<int> d_TABLE;
int d_SYMS_PER_BLOCK;
size_t d_BYTES_PER_SYMBOL;
public:
permutation_impl(int K,
const std::vector<int>& TABLE,
int SYMS_PER_BLOCK,
size_t NBYTES);
~permutation_impl() override;
int K() const override { return d_K; }
std::vector<int> TABLE() const override { return d_TABLE; }
int SYMS_PER_BLOCK() const override { return d_SYMS_PER_BLOCK; }
size_t BYTES_PER_SYMBOL() const override { return d_BYTES_PER_SYMBOL; }
void set_K(int K) override;
void set_TABLE(const std::vector<int>& table) override;
void set_SYMS_PER_BLOCK(int spb) override;
int work(int noutput_items,
gr_vector_const_void_star& input_items,
gr_vector_void_star& output_items) override;
};
} /* namespace trellis */
} /* namespace gr */
#endif /* INCLUDED_TRELLIS_PERMUTATION_IMPL_H */
|