Imported Upstream version 3.2.2
[debian/gnuradio] / gnuradio-core / src / lib / general / gr_float_to_complex.cc
1 /* -*- c++ -*- */
2 /*
3  * Copyright 2004, 2009 Free Software Foundation, Inc.
4  * 
5  * This file is part of GNU Radio
6  * 
7  * GNU Radio is free software; you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation; either version 3, or (at your option)
10  * any later version.
11  * 
12  * GNU Radio is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU General Public License for more details.
16  * 
17  * You should have received a copy of the GNU General Public License
18  * along with GNU Radio; see the file COPYING.  If not, write to
19  * the Free Software Foundation, Inc., 51 Franklin Street,
20  * Boston, MA 02110-1301, USA.
21  */
22
23 #ifdef HAVE_CONFIG_H
24 #include "config.h"
25 #endif
26
27 #include <gr_float_to_complex.h>
28 #include <gr_io_signature.h>
29
30 gr_float_to_complex_sptr
31 gr_make_float_to_complex (size_t vlen)
32 {
33   return gr_float_to_complex_sptr (new gr_float_to_complex (vlen));
34 }
35
36 gr_float_to_complex::gr_float_to_complex (size_t vlen)
37   : gr_sync_block ("gr_float_to_complex",
38                    gr_make_io_signature (1, 2, sizeof (float) *  vlen),
39                    gr_make_io_signature (1, 1, sizeof (gr_complex) * vlen)),
40   d_vlen (vlen)
41 {
42 }
43
44 int
45 gr_float_to_complex::work (int noutput_items,
46                            gr_vector_const_void_star &input_items,
47                            gr_vector_void_star &output_items)
48 {
49   float *r = (float *)input_items[0];
50   float *i = (float *)input_items[1];
51   gr_complex *out = (gr_complex *) output_items[0];
52
53   switch (input_items.size ()){
54   case 1:
55     for (int j = 0; j < noutput_items*d_vlen; j++)
56       out[j] = gr_complex (r[j], 0);
57     break;
58
59   case 2:
60     for (int j = 0; j < noutput_items*d_vlen; j++)
61       out[j] = gr_complex (r[j], i[j]);
62     break;
63
64   default:
65     assert (0);
66   }
67
68   return noutput_items;
69 }
70
71
72