00001 /*! 00002 ************************************************************************ 00003 * \file img_process.h 00004 * 00005 * \brief 00006 * Input data Image Processing functions 00007 * 00008 * \author 00009 * Main contributors (see contributors.h for copyright, address and affiliation details) 00010 * - Alexis Michael Tourapis <alexis.tourapis@dolby.com> 00011 * 00012 ************************************************************************ 00013 */ 00014 00015 #ifndef _IMG_PROCESS_H_ 00016 #define _IMG_PROCESS_H_ 00017 00018 extern int InitProcessImage ( ImageParameters *p_Img, InputParameters *p_Inp ); 00019 extern void ClearProcessImage( ImageParameters *p_Img, InputParameters *p_Inp); 00020 extern void ProcessImage ( ImageParameters *p_Img, InputParameters *p_Inp ); 00021 00022 00023 #endif 00024