forked from gnuradio/gnuradio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathldpc_encoder_impl.h
49 lines (40 loc) · 1.08 KB
/
ldpc_encoder_impl.h
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
/* -*- c++ -*- */
/*
* Copyright 2015 Free Software Foundation, Inc.
*
* This file is part of GNU Radio
*
* SPDX-License-Identifier: GPL-3.0-or-later
*
*/
#ifndef INCLUDED_LDPC_ENCODER_IMPL_H
#define INCLUDED_LDPC_ENCODER_IMPL_H
#include <gnuradio/fec/alist.h>
#include <gnuradio/fec/cldpc.h>
#include <gnuradio/fec/ldpc_encoder.h>
#include <map>
#include <string>
#include <vector>
namespace gr {
namespace fec {
class ldpc_encoder_impl : public ldpc_encoder
{
private:
// plug into the generic fec api
void generic_work(void* inBuffer, void* outbuffer) override;
// memory allocated for processing
int outputSize;
int inputSize;
alist d_list;
cldpc d_code;
public:
ldpc_encoder_impl(std::string alist_file);
~ldpc_encoder_impl() override;
double rate() override { return (1.0 * get_input_size() / get_output_size()); }
bool set_frame_size(unsigned int frame_size) override { return false; }
int get_output_size() override;
int get_input_size() override;
};
} // namespace fec
} // namespace gr
#endif /* INCLUDED_LDPC_ENCODER_IMPL_H */