summaryrefslogtreecommitdiff
path: root/gr-dtv/lib/atsc/atsc_depad_impl.cc
blob: 246264fc6c12b82692287c52c92e1ae085faf5e1 (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
/* -*- c++ -*- */
/*
 * Copyright 2014 Free Software Foundation, Inc.
 *
 * This file is part of GNU Radio
 *
 * SPDX-License-Identifier: GPL-3.0-or-later
 *
 */

#ifdef HAVE_CONFIG_H
#include "config.h"
#endif

#include "atsc_depad_impl.h"
#include "gnuradio/dtv/atsc_consts.h"
#include <gnuradio/io_signature.h>

namespace gr {
namespace dtv {

atsc_depad::sptr atsc_depad::make()
{
    return gnuradio::make_block_sptr<atsc_depad_impl>();
}

atsc_depad_impl::atsc_depad_impl()
    : gr::sync_interpolator(
          "atsc_depad",
          io_signature::make(1, 1, ATSC_MPEG_PKT_LENGTH * sizeof(uint8_t)),
          io_signature::make(1, 1, sizeof(uint8_t)),
          ATSC_MPEG_PKT_LENGTH)
{
}

int atsc_depad_impl::work(int noutput_items,
                          gr_vector_const_void_star& input_items,
                          gr_vector_void_star& output_items)
{
    auto in = static_cast<const uint8_t*>(input_items[0]);
    auto out = static_cast<uint8_t*>(output_items[0]);

    int i;

    for (i = 0; i < noutput_items / ATSC_MPEG_PKT_LENGTH; i++)
        memcpy(&out[i * ATSC_MPEG_PKT_LENGTH],
               &in[i * ATSC_MPEG_PKT_LENGTH],
               ATSC_MPEG_PKT_LENGTH);

    return i * ATSC_MPEG_PKT_LENGTH;
}

} /* namespace dtv */
} /* namespace gr */