summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPiotr Krysik <perper@o2.pl>2009-07-01 10:06:39 +0200
committerPiotr Krysik <perper@o2.pl>2009-07-01 10:06:39 +0200
commit4dbe25c15316a000277a6e071c15658a7e696bf7 (patch)
tree6b1e13f41f3f96b4c64a3b684061e1156d98520f
parent8fd6a5bd046991432b0d651b728f7d6efaa265cf (diff)
marked dirty lines which should be removed in the future
-rw-r--r--gsm-receiver/src/lib/gsm_receiver_cf.cc52
1 files changed, 26 insertions, 26 deletions
diff --git a/gsm-receiver/src/lib/gsm_receiver_cf.cc b/gsm-receiver/src/lib/gsm_receiver_cf.cc
index 4742b33..9b2057d 100644
--- a/gsm-receiver/src/lib/gsm_receiver_cf.cc
+++ b/gsm-receiver/src/lib/gsm_receiver_cf.cc
@@ -193,13 +193,13 @@ gsm_receiver_cf::gsm_receiver_cf(gr_feval_dd *tuner, gr_feval_dd *synchronizer,
d_state(first_fcch_search),
d_burst_nr(osr),
d_failed_sch(0),
- d_tch_decoder1( GSM::gFACCH_TCHFMapping ),
- d_tch_decoder2( GSM::gFACCH_TCHFMapping ),
- d_tch_decoder3( GSM::gFACCH_TCHFMapping ),
- d_tch_decoder4( GSM::gFACCH_TCHFMapping ),
- d_tch_decoder5( GSM::gFACCH_TCHFMapping ),
- d_tch_decoder6( GSM::gFACCH_TCHFMapping ),
- d_tch_decoder7( GSM::gFACCH_TCHFMapping )
+ d_tch_decoder1( GSM::gFACCH_TCHFMapping ), //!!
+ d_tch_decoder2( GSM::gFACCH_TCHFMapping ), //!!
+ d_tch_decoder3( GSM::gFACCH_TCHFMapping ), //!!
+ d_tch_decoder4( GSM::gFACCH_TCHFMapping ), //!!
+ d_tch_decoder5( GSM::gFACCH_TCHFMapping ), //!!
+ d_tch_decoder6( GSM::gFACCH_TCHFMapping ), //!!
+ d_tch_decoder7( GSM::gFACCH_TCHFMapping ) //!!
{
int i;
gmsk_mapper(SYNC_BITS, N_SYNC_BITS, d_sch_training_seq, gr_complex(0.0, -1.0));
@@ -214,25 +214,25 @@ gsm_receiver_cf::gsm_receiver_cf(gr_feval_dd *tuner, gr_feval_dd *synchronizer,
gmsk_mapper(train_seq[i], N_TRAIN_BITS, d_norm_training_seq[i], startpoint);
}
- d_gsm_file = fopen( "speech.gsm", "wb" );
-
- d_hex_to_int['0'] = 0;
- d_hex_to_int['4'] = 4;
- d_hex_to_int['8'] = 8;
- d_hex_to_int['c'] = 0xc;
- d_hex_to_int['1'] = 1;
- d_hex_to_int['5'] = 5;
- d_hex_to_int['9'] = 9;
- d_hex_to_int['d'] = 0xd;
- d_hex_to_int['2'] = 2;
- d_hex_to_int['6'] = 6;
- d_hex_to_int['a'] = 0xa;
- d_hex_to_int['e'] = 0xe;
- d_hex_to_int['3'] = 3;
- d_hex_to_int['7'] = 7;
- d_hex_to_int['b'] = 0xb;
- d_hex_to_int['f'] = 0xf;
- read_key(key);
+
+ d_gsm_file = fopen( "speech.gsm", "wb" ); //!!
+ d_hex_to_int['0'] = 0; //!!
+ d_hex_to_int['4'] = 4; //!!
+ d_hex_to_int['8'] = 8; //!!
+ d_hex_to_int['c'] = 0xc; //!!
+ d_hex_to_int['1'] = 1; //!!
+ d_hex_to_int['5'] = 5; //!!
+ d_hex_to_int['9'] = 9; //!!
+ d_hex_to_int['d'] = 0xd; //!!
+ d_hex_to_int['2'] = 2; //!!
+ d_hex_to_int['6'] = 6; //!!
+ d_hex_to_int['a'] = 0xa; //!!
+ d_hex_to_int['e'] = 0xe; //!!
+ d_hex_to_int['3'] = 3; //!!
+ d_hex_to_int['7'] = 7; //!!
+ d_hex_to_int['b'] = 0xb; //!!
+ d_hex_to_int['f'] = 0xf; //!!
+ read_key(key); //!!
/* Initialize GSM Stack */
GS_new(&d_gs_ctx); //TODO: remove it! it's not a right place for a decoder
}
personal git repositories of Harald Welte. Your mileage may vary