00001 /*! 00002 *************************************************************************** 00003 * \file 00004 * wp_lms.h 00005 * 00006 * \author 00007 * Alexis Michael Tourapis 00008 * 00009 * \date 00010 * 22. February 2008 00011 * 00012 * \brief 00013 * Headerfile for weighted prediction support using LMS 00014 ************************************************************************** 00015 */ 00016 00017 #ifndef _WP_LMS_H_ 00018 #define _WP_LMS_H_ 00019 00020 extern void EstimateWPPSliceAlg1(Slice *currSlice, int offset); 00021 extern void EstimateWPBSliceAlg1(Slice *currSlice); 00022 extern int TestWPPSliceAlg1 (ImageParameters *p_Img, InputParameters *input, int offset); 00023 extern int TestWPBSliceAlg1 (ImageParameters *p_Img, InputParameters *input, int method); 00024 00025 #endif 00026