blob: 90f8ad36b38a833f90688ccf6ef7a6e81c6cc9c2 (
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
|
/* -*- c++ -*- */
/*
* Copyright 2015 Free Software Foundation, Inc.
*
* SPDX-License-Identifier: GPL-3.0-or-later
*
*/
#ifndef INCLUDED_DTV_ATSC_RS_ENCODER_IMPL_H
#define INCLUDED_DTV_ATSC_RS_ENCODER_IMPL_H
#include "atsc_types.h"
#include <gnuradio/dtv/atsc_rs_encoder.h>
extern "C" {
#include <gnuradio/fec/rs.h>
}
namespace gr {
namespace dtv {
class atsc_rs_encoder_impl : public atsc_rs_encoder
{
private:
void* d_rs;
void encode(atsc_mpeg_packet_rs_encoded& out, const atsc_mpeg_packet_no_sync& in);
public:
atsc_rs_encoder_impl();
~atsc_rs_encoder_impl() override;
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_ENCODER_IMPL_H */
|