Imported Upstream version 3.0
[debian/gnuradio] / gr-gsm-fr-vocoder / src / lib / gsm_fr_encode_sp.cc
1 /* -*- c++ -*- */
2 /*
3  * Copyright 2005 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 2, 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 #include "gsm_fr_encode_sp.h"
27 extern "C"{
28 #include "gsm/gsm.h"
29 }
30 #include <gr_io_signature.h>
31 #include <stdexcept>
32
33 gsm_fr_encode_sp_sptr
34 gsm_fr_make_encode_sp ()
35 {
36   return gsm_fr_encode_sp_sptr (new gsm_fr_encode_sp ());
37 }
38
39 gsm_fr_encode_sp::gsm_fr_encode_sp ()
40   : gr_sync_decimator ("gsm_fr_encode_sp",
41                        gr_make_io_signature (1, 1, sizeof (short)),
42                        gr_make_io_signature (1, 1, sizeof (gsm_frame)),
43                        GSM_SAMPLES_PER_FRAME)
44 {
45   if ((d_gsm = gsm_create ()) == 0)
46     throw std::runtime_error ("gsm_fr_encode_sp: gsm_create failed");
47 }
48
49 gsm_fr_encode_sp::~gsm_fr_encode_sp ()
50 {
51   gsm_destroy (d_gsm);
52 }
53
54 int
55 gsm_fr_encode_sp::work (int noutput_items,
56                         gr_vector_const_void_star &input_items,
57                         gr_vector_void_star &output_items)
58 {
59   const short *in = (const short *) input_items[0];
60   unsigned char *out = (unsigned char *) output_items[0];
61
62   for (int i = 0; i < noutput_items; i++){
63     gsm_encode (d_gsm, const_cast<short*>(in), out);
64     in += GSM_SAMPLES_PER_FRAME;
65     out += sizeof (gsm_frame);
66   }
67
68   return noutput_items;
69 }