00001 /*! 00002 ************************************************************************** 00003 * \file lagrangian.h 00004 * \brief 00005 * Distortion data header file 00006 * \date 2.23.2009, 00007 * 00008 * \author 00009 * Alexis Michael Tourapis <alexismt@ieee.org> 00010 * 00011 ************************************************************************** 00012 */ 00013 00014 #ifndef _LAGRANGIAN_H_ 00015 #define _LAGRANGIAN_H_ 00016 00017 typedef struct lambda_params 00018 { 00019 double md; //!< Mode decision Lambda 00020 double me[3]; //!< Motion Estimation Lambda 00021 int mf[3]; //!< Integer formatted Motion Estimation Lambda 00022 } LambdaParams; 00023 00024 #endif 00025