⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 wp_mcprec.h

📁 H.264编码实现
💻 H
字号:
/*!
 ***************************************************************************
 * \file
 *    wp_mcprec.h
 *
 * \brief
 *    Headerfile for Improved Motion Compensatation Precision Scheme using Weighted Prediction
 * \author
 *    Main contributors (see contributors.h for copyright, address and affiliation details)
 *     - Athanasios Leontaris            <aleon@dolby.com>
 *
 * \date
 *    16 July 2008
 *
 **************************************************************************
 */

#ifndef _WP_MCPREC_H_
#define _WP_MCPREC_H_


#define WP_MCPREC_PLUS0       4
#define WP_MCPREC_PLUS1       5
#define WP_MCPREC_MINUS0      6
#define WP_MCPREC_MINUS1      7
#define WP_MCPREC_MINUS_PLUS0 8
#define WP_REGULAR            9

typedef struct
{
  int PicNum;              // PicNum/FrameNum
  int POCNum;              // POC
}
WeightedPredRefX;

typedef struct
{
  int algorithm;
}
WPXPass;

typedef struct
{
  int               num_wp_ref_list[2];         // num of elements in each of the above matrices [LIST]
  WeightedPredRefX *wp_ref_list[2];             // structure with reordering and WP information for ref frames [LIST]
  WPXPass          *curr_wp_rd_pass;
  WPXPass           wp_rd_passes[3];            // frame_picture [0...4] (MultiRefWeightedPred == 2)
}
WPXObject;

WPXObject *pWPX;

void   wpxInitWPXObject( void );
void   wpxFreeWPXObject( void );
void   wpxInitWPXPasses( InputParameters *params );
void   wpxModifyRefPicList( ImageParameters *img );
// Note that at some point, InputParameters params contents should be copied into ImageParameters *img. 
// This would eliminate need of having to use both structures
int    wpxDetermineWP( InputParameters *params, ImageParameters *img, int clist, int n );
void   wpxAdaptRefNum( ImageParameters *img );
void   wpxReorderLists( ImageParameters *img, Slice *currSlice );

#endif

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -