00001 /*-------------------------------------------------------------------- 00002 * 00003 * (C) Copyright Koninklijke Philips Electronics NV 2006. 00004 * All rights reserved. This software is licensed under the terms of 00005 * version 2.1 of the GNU Lesser General Public License as published 00006 * by the Free Software Foundation. For licensing and warranty 00007 * information, see the file COPYING in the main directory. 00008 * 00009 *------------------------------------------------------------------*/ 00010 00011 #ifndef IDCT1D_H 00012 #define IDCT1D_H 00013 00014 #include "yapi.h" 00015 #include "vya.h" 00016 00017 class IDCT1D : public Process 00018 { 00019 public: 00020 // constructors 00021 IDCT1D( 00022 const Id& n, 00023 In<VYApixel>& cin, 00024 Out<VYApixel>& cout 00025 ); 00026 00027 // type member function 00028 const char* type() const { return "IDCT1D"; } 00029 00030 // main member function 00031 void main(); 00032 00033 private: 00034 // input ports 00035 InPort<VYApixel> CIn; 00036 00037 // output ports 00038 OutPort<VYApixel> COut; 00039 }; 00040 00041 #endif