/* -*- c++ -*- */ /* * Copyright 2003 Free Software Foundation, Inc. * * This file is part of GNU Radio * * GNU Radio is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2, or (at your option) * any later version. * * GNU Radio is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with GNU Radio; see the file COPYING. If not, write to * the Free Software Foundation, Inc., 51 Franklin Street, * Boston, MA 02110-1301, USA. */ %{ #include #include #include #include #include #include #include #include #include #include #include %} // from atsc_types.h class plinfo; class atsc_mpeg_packet; class atsc_mpeg_packet_no_sync; class atsc_mpeg_packet_rs_encoded; class atsc_data_segment; class atsc_soft_data_segment; %include // leave out the VrHistoryProc and pretend we're directly derived from VrSigProc // %template(VrHistoryProc_1) VrHistoryProc; class GrAtscRandomizer : public VrSigProc // class GrAtscRandomizer : public VrHistoryProc { public: GrAtscRandomizer (); ~GrAtscRandomizer (); }; class GrAtscRSEncoder : public VrSigProc { public: GrAtscRSEncoder (); ~GrAtscRSEncoder (); }; class GrAtscInterleaver : public VrSigProc { public: GrAtscInterleaver (); ~GrAtscInterleaver (); }; class GrAtscTrellisEncoder : public VrSigProc { public: GrAtscTrellisEncoder (); ~GrAtscTrellisEncoder (); }; class GrAtscFieldSyncMux : public VrSigProc { public: GrAtscFieldSyncMux (); ~GrAtscFieldSyncMux (); }; template class GrAtscSymbolMapper : public VrSigProc { public: GrAtscSymbolMapper (); ~GrAtscSymbolMapper (); }; %template(GrAtscSymbolMapperF) GrAtscSymbolMapper; template class GrWeaverModHead : public VrSigProc { public: GrWeaverModHead (int interp_factor); ~GrWeaverModHead (); }; %template(GrWeaverModHeadFF) GrWeaverModHead; template class GrWeaverModTail : public VrSigProc { public: GrWeaverModTail (float freq, float gain); ~GrWeaverModTail (); //! frequency is in Hz void set_freq (float frequency); void set_gain (float g); }; %template(GrWeaverModTailFS) GrWeaverModTail; class GrAtscConvert2xTo20 : public VrSigProc { public: GrAtscConvert2xTo20 (); ~GrAtscConvert2xTo20 (); }; #if 0 // FIXME %template(VrSource_mpeg_packet) VrSource; %template(VrFileSource_mpeg_packet) VrFileSource; %template(VrSink_mpeg_packet) VrSink; %template(VrFileSink_mpeg_packet) VrFileSink; #endif