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