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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
|
/* -*- c++ -*- */
/*
* Copyright 2006 Free Software Foundation, Inc.
*
* This file is part of GNU Radio
*
* GNU Radio is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2, or (at your option)
* any later version.
*
* GNU Radio is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with GNU Radio; see the file COPYING. If not, write to
* the Free Software Foundation, Inc., 51 Franklin Street,
* Boston, MA 02110-1301, USA.
*/
#ifndef INCLUDED_ENCODER_H
#define INCLUDED_ENCODER_H
#include "code_io.h"
class encoder
{
/*
* class encoder
* A virtual class upon which all encoder types can be built.
* This class provides the basic methods and variables
* generic for all encoders.
*/
public:
encoder () {};
virtual ~encoder () {};
/*
* compute_n_...: to be defined by inheriting classes, in order to
* allow for user-functions to figure out how many inputs are
* required to generate a given number of outputs, and vice versa.
* Can't define them without knowing the encoder type.
*
* Compute the number of input bits needed to produce 'n_output' bits,
* and the number of output bits which will be produced by 'n_input'
* bits ... for a single stream only.
*/
virtual size_t compute_n_input_bits (size_t n_output_bits) = 0;
virtual size_t compute_n_output_bits (size_t n_input_bits) = 0;
/*
* encode: given the input and output buffers, either encode up to
* the number of output bits or encode the number of input bits
* ... if the buffers support either encoding amounts.
*/
virtual size_t encode (const code_input_ptr in_buf,
code_output_ptr out_buf,
size_t n_bits_to_output);
virtual size_t encode (const code_input_ptr in_buf,
size_t n_bits_to_input,
code_output_ptr out_buf);
/* for remote access to internal info */
inline const size_t block_size_bits () {return (d_block_size_bits);};
inline const size_t n_code_inputs () {return (d_n_code_inputs);};
inline const size_t n_code_outputs () {return (d_n_code_outputs);};
inline const size_t total_n_enc_bits () {return (d_total_n_enc_bits);};
protected:
/*
* encode_private: encode the given in_buf and write the output bits
* to the out_buf, using internal class variables. This function is
* called from the publically available "encode()" methods, which
* first set the internal class variables before executing.
*/
virtual void encode_private () = 0;
size_t d_block_size_bits, d_n_code_inputs, d_n_code_outputs;
size_t d_total_n_enc_bits, d_n_bits_to_input, d_n_bits_to_output;
code_input_ptr d_in_buf;
code_output_ptr d_out_buf;
};
#endif /* INCLUDED_ENCODER_H */
|