upsampler_T.cpp
上传用户:jtjnyq9001
上传日期:2014-11-21
资源大小:3974k
文件大小:2k
源码类别:

3G开发

开发平台:

Visual C++

  1. //
  2. //  File = upsampler_T.cpp
  3. //
  4. #include <stdlib.h>
  5. #include <fstream>
  6. #include <strstream>
  7. #include "parmfile.h"
  8. #include "model_error.h"
  9. #include "upsampler_T.h"
  10. #include "model_graph.h"
  11. extern ParmFile *ParmInput;
  12. extern PracSimModel *ActiveModel;
  13. extern int PassNumber;
  14. //======================================================================
  15. //  Constructor
  16. template< class T >
  17. Upsampler< T >::Upsampler( char* instance_name,
  18.                                 PracSimModel* outer_model,
  19.                                 Signal<T>* in_signal,
  20.                                 Signal<T>* out_signal )
  21.               :PracSimModel(instance_name,
  22.                             outer_model)
  23. {  
  24.   MODEL_NAME(Upsampler);
  25.   ENABLE_MULTIRATE;
  26. //  ActiveModel = this;
  27.   //-----------------------------------
  28.   // Read configuration parameters
  29.   OPEN_PARM_BLOCK;
  30.   GET_INT_PARM(Interp_Rate);
  31.   //-----------------------------------
  32.   //  Signals
  33.   In_Sig = in_signal;
  34.   Out_Sig = out_signal;
  35.   MAKE_OUTPUT( Out_Sig );
  36.   MAKE_INPUT( In_Sig );
  37.   CHANGE_RATE(In_Sig, Out_Sig, Interp_Rate);
  38. };
  39. //================================================
  40. template< class T >
  41. Upsampler<T>::~Upsampler( void ){ };
  42. //=======================================================
  43. template< class T >
  44. void Upsampler<T>::Initialize()
  45.   {
  46.   //---------------------------------------
  47.   //  Initialize derived parameters
  48.   //Samp_Intvl = In_Sig->GetSampIntvl();
  49.   //Block_Size = In_Sig->GetBlockSize();
  50. }
  51. //=======================================
  52. template< class T >
  53. int Upsampler<T>::Execute()
  54. {
  55.   T input_samp, *input_signal_ptr;
  56.   T *output_signal_ptr;
  57.   int is, block_size;
  58.   //-----------------------------------------
  59.   // Get pointers for input and output signals
  60.   
  61.   output_signal_ptr = GET_OUTPUT_PTR(Out_Sig);
  62.   input_signal_ptr = GET_INPUT_PTR(In_Sig);
  63.   block_size = In_Sig->GetValidBlockSize();
  64.   Out_Sig->SetValidBlockSize(block_size * Interp_Rate);
  65.   //-----------------------------------------------------
  66.   //  normal processing loop
  67.    for(is=0; is<block_size; is++) {
  68.       input_samp = *input_signal_ptr++;
  69.       *output_signal_ptr++ = Interp_Rate * input_samp;
  70.       for(int j=1; j<Interp_Rate; j++) {
  71.          *output_signal_ptr++ = 0.0;
  72.       }
  73.    }
  74.    return(_MES_AOK);
  75. }
  76. template Upsampler< int >;
  77. template Upsampler< float >;
  78. template Upsampler< bit_t >;