Main Page | Namespace List | Compound List | File List | Compound Members | File Members

scaling_env.h

Go to the documentation of this file.
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 SCALING_ENV_H
00012 #define SCALING_ENV_H
00013 
00014 #include "yapi.h"
00015 #include "vya.h"
00016 #include "cpfspd.h"
00017 #include "scaling_args.h"
00018 
00019 class ScalingEnv : public Process
00020 {
00021 public:
00022   // constructor
00023   ScalingEnv(
00024     const Id&             n,
00025     In<pT_header>&        seqInfo,
00026     In<scaling_args_t>&   scaleArguments,
00027     Out<VYAimageWidth>&   YimageWidth,
00028     Out<VYAimageHeight>&  YimageHeight,
00029     Out<VYAimageWidth>&   UVimageWidth,
00030     Out<VYAimageHeight>&  UVimageHeight
00031   );
00032 
00033   // type member function
00034   const char* type() const { return "ScalingEnv"; }
00035   
00036   // main member function
00037   void main();
00038 
00039 private:
00040   InPort<pT_header>         seqInfoP;
00041   InPort<scaling_args_t>    scaleArgumentsP;
00042   OutPort<VYAimageWidth>    YimageWidthP;
00043   OutPort<VYAimageHeight>   YimageHeightP;
00044   OutPort<VYAimageWidth>    UVimageWidthP;
00045   OutPort<VYAimageHeight>   UVimageHeightP;
00046 };
00047 
00048 
00049 #endif

Generated on Wed Feb 15 14:52:44 2006 for scaling by doxygen 1.3.2