summaryrefslogtreecommitdiff
path: root/gr-atsc/src/lib/qa_convolutional_interleaver.cc
diff options
context:
space:
mode:
Diffstat (limited to 'gr-atsc/src/lib/qa_convolutional_interleaver.cc')
-rw-r--r--gr-atsc/src/lib/qa_convolutional_interleaver.cc16
1 files changed, 8 insertions, 8 deletions
diff --git a/gr-atsc/src/lib/qa_convolutional_interleaver.cc b/gr-atsc/src/lib/qa_convolutional_interleaver.cc
index fff6e61c9..bfe86f0ea 100644
--- a/gr-atsc/src/lib/qa_convolutional_interleaver.cc
+++ b/gr-atsc/src/lib/qa_convolutional_interleaver.cc
@@ -1,19 +1,19 @@
/* -*- c++ -*- */
/*
* Copyright 2002 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 3, 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,
@@ -79,7 +79,7 @@ qa_convolutional_interleaver::t2 ()
int icount = 6000;
int dcount = 6000;
-
+
int end_to_end_delay = intl->end_to_end_delay ();
for (int i = 0; i < end_to_end_delay; i++){
CPPUNIT_ASSERT_EQUAL (0, deintl->transform (intl->transform (icount++)));
@@ -98,7 +98,7 @@ qa_convolutional_interleaver::t3 ()
int icount = 6000;
int dcount = 6000;
-
+
int end_to_end_delay = intl->end_to_end_delay ();
for (int i = 0; i < end_to_end_delay; i++){
CPPUNIT_ASSERT_EQUAL (0, deintl->transform (intl->transform (icount++)));
@@ -117,10 +117,10 @@ qa_convolutional_interleaver::t4 ()
int icount = 6000;
int dcount = 6000;
-
+
int end_to_end_delay = intl->end_to_end_delay ();
CPPUNIT_ASSERT_EQUAL (10608, end_to_end_delay);
-
+
for (int i = 0; i < end_to_end_delay; i++){
CPPUNIT_ASSERT_EQUAL (0, deintl->transform (intl->transform (icount++)));
}