blob: 95ba03a6c64ac56d19c3e1672f361c5f114e7279 (
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_corrrected_count;
int d_bad_packet_count;
int d_total_packets;
void* d_rs;
public:
atsc_rs_decoder_impl();
~atsc_rs_decoder_impl();
void setup_rpc();
int num_errors_corrected() const;
int num_bad_packets() const;
int num_packets() const;
/*!
* Decode RS encoded packet.
* \returns a count of corrected symbols, or -1 if the block was uncorrectible.
*/
int decode(atsc_mpeg_packet_no_sync& out, const atsc_mpeg_packet_rs_encoded& 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 */
|