blob: c7b3c5d1c92ac27f17bdce4fa93a11d88ec7c824 (
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
53
54
55
56
|
/* -*- c++ -*- */
/*
* Copyright 2014 Free Software Foundation, Inc.
*
* This file is part of GNU Radio
*
* SPDX-License-Identifier: GPL-3.0-or-later
*
*/
#ifndef INCLUDED_DTV_ATSC_RS_DECODER_IMPL_H
#define INCLUDED_DTV_ATSC_RS_DECODER_IMPL_H
#include "atsc_types.h"
#include <gnuradio/dtv/atsc_rs_decoder.h>
extern "C" {
#include <gnuradio/fec/rs.h>
}
namespace gr {
namespace dtv {
class atsc_rs_decoder_impl : public atsc_rs_decoder
{
private:
int d_nerrors_corrected_count;
int d_bad_packet_count;
int d_total_packets;
void* d_rs;
public:
atsc_rs_decoder_impl();
~atsc_rs_decoder_impl() override;
void setup_rpc() override;
int num_errors_corrected() const override;
int num_bad_packets() const override;
int num_packets() const override;
/*!
* Decode RS encoded packet.
* \returns a count of corrected symbols, or -1 if the block was uncorrectible.
*/
int decode(uint8_t* out, const uint8_t* in);
int work(int noutput_items,
gr_vector_const_void_star& input_items,
gr_vector_void_star& output_items) override;
};
} /* namespace dtv */
} /* namespace gr */
#endif /* INCLUDED_DTV_ATSC_RS_DECODER_IMPL_H */
|