📄 rdopt.c
字号:
#define ABIPRED 1
/*
***********************************************************************
* COPYRIGHT AND WARRANTY INFORMATION
*
* Copyright 2001, International Telecommunications Union, Geneva
*
* DISCLAIMER OF WARRANTY
*
* These software programs are available to the user without any
* license fee or royalty on an "as is" basis. The ITU disclaims
* any and all warranties, whether express, implied, or
* statutory, including any implied warranties of merchantability
* or of fitness for a particular purpose. In no event shall the
* contributor or the ITU be liable for any incidental, punitive, or
* consequential damages of any kind whatsoever arising from the
* use of these programs.
*
* This disclaimer of warranty extends to the user of these programs
* and user's customers, employees, agents, transferees, successors,
* and assigns.
*
* The ITU does not represent or warrant that the programs furnished
* hereunder are free of infringement of any third-party patents.
* Commercial implementations of ITU-T Recommendations, including
* shareware, may be subject to royalty fees to patent holders.
* Information regarding the ITU-T patent policy is available from
* the ITU Web site at http://www.itu.int.
*
* THIS IS NOT A GRANT OF PATENT RIGHTS - SEE THE ITU-T PATENT POLICY.
************************************************************************
*/
/*!
***************************************************************************
* \file rdopt.c
*
* \brief
* Rate-Distortion optimized mode decision
*
* \author
* Heiko Schwarz <hschwarz@hhi.de>
*
* \date
* 12. April 2001
**************************************************************************
*/
#include <stdlib.h>
#include <math.h>
#include <memory.h>
#include <assert.h>
#include "rdopt_coding_state.h"
#include "elements.h"
#include "refbuf.h"
#include "intrarefresh.h"
#include "vlc.h"
extern int QP2QUANT [40];
//==== MODULE PARAMETERS ====
int best_mode;
int rec_mbY[16][16], rec_mbU[8][8], rec_mbV[8][8], rec_mbY8x8[16][16]; // reconstruction values
int mpr8x8[16][16];
int ****cofAC=NULL, ****cofAC8x8=NULL; // [8x8block][4x4block][level/run][scan_pos]
int ***cofDC=NULL; // [yuv][level/run][scan_pos]
int **cofAC4x4=NULL, ****cofAC4x4intern=NULL; // [level/run][scan_pos]
int cbp, cbp8x8, cnt_nonz_8x8;
int cbp_blk, cbp_blk8x8;
//int frefframe[4], brefframe[4], b8mode[4], b8pdir[4];
int frefframe[4][4], brefframe[4][4], b8mode[4], b8pdir[4];
int best8x8mode [4]; // [block]
int best8x8pdir [MAXMODE][4]; // [mode][block]
int best8x8ref [MAXMODE][4]; // [mode][block]
int b8_ipredmode[16], b8_intra_pred_modes[16];
CSptr cs_mb=NULL, cs_b8=NULL, cs_cm=NULL, cs_imb=NULL, cs_ib8=NULL, cs_ib4=NULL, cs_pc=NULL;
int best_c_imode;
int best_i16offset;
int best8x8bwref [MAXMODE][4]; // [mode][block]
int best8x8abp_type [MAXMODE][4]; // [mode][block]
int abp_typeframe[4][4];
/*!
************************************************************************
* \brief
* delete structure for RD-optimized mode decision
************************************************************************
*/
void clear_rdopt ()
{
free_mem_DCcoeff (cofDC);
free_mem_ACcoeff (cofAC);
free_mem_ACcoeff (cofAC8x8);
free_mem_ACcoeff (cofAC4x4intern);
// structure for saving the coding state
delete_coding_state (cs_mb);
delete_coding_state (cs_b8);
delete_coding_state (cs_cm);
delete_coding_state (cs_imb);
delete_coding_state (cs_ib8);
delete_coding_state (cs_ib4);
delete_coding_state (cs_pc);
}
/*!
************************************************************************
* \brief
* create structure for RD-optimized mode decision
************************************************************************
*/
void init_rdopt ()
{
get_mem_DCcoeff (&cofDC);
get_mem_ACcoeff (&cofAC);
get_mem_ACcoeff (&cofAC8x8);
get_mem_ACcoeff (&cofAC4x4intern);
cofAC4x4 = cofAC4x4intern[0][0];
// structure for saving the coding state
cs_mb = create_coding_state ();
cs_b8 = create_coding_state ();
cs_cm = create_coding_state ();
cs_imb = create_coding_state ();
cs_ib8 = create_coding_state ();
cs_ib4 = create_coding_state ();
cs_pc = create_coding_state ();
}
/*!
*************************************************************************************
* \brief
* Updates the pixel map that shows, which reference frames are reliable for
* each MB-area of the picture.
*
* \note
* The new values of the pixel_map are taken from the temporary buffer refresh_map
*
*************************************************************************************
*/
void UpdatePixelMap()
{
int mx,my,y,x,i,j;
if (img->type==INTRA_IMG)
{
for (y=0; y<img->height; y++)
for (x=0; x<img->width; x++)
{
pixel_map[y][x]=1;
}
}
else
{
for (my=0; my<img->height/8; my++)
for (mx=0; mx<img->width/8; mx++)
{
j = my*8 + 8;
i = mx*8 + 8;
if (refresh_map[my][mx])
{
for (y=my*8; y<j; y++)
for (x=mx*8; x<i; x++) pixel_map[y][x] = 1;
}
else
{
for (y=my*8; y<j; y++)
for (x=mx*8; x<i; x++) pixel_map[y][x] = min(pixel_map[y][x]+1, input->no_multpred+1);
}
}
}
}
/*!
*************************************************************************************
* \brief
* Checks if a given reference frame is reliable for the current
* macroblock, given the motion vectors that the motion search has
* returned.
*
* \param ref_frame
* The number of the reference frame that we want to check
*
* \return
* If the return value is 1, the reference frame is reliable. If it
* is 0, then it is not reliable.
*
* \note
* A specific area in each reference frame is assumed to be unreliable
* if the same area has been intra-refreshed in a subsequent frame.
* The information about intra-refreshed areas is kept in the pixel_map.
*
*************************************************************************************
*/
int CheckReliabilityOfRef (int block, int ref, int mode)
{
int y,x, block_y, block_x, dy, dx, y_pos, x_pos, yy, xx, pres_x, pres_y;
int maxold_x = img->width-1;
int maxold_y = img->height-1;
int ref_frame = ref+1;
int by0 = (mode>=4?2*(block/2):mode==2?2*block:0);
int by1 = by0 + (mode>=4||mode==2?2:4);
int bx0 = (mode>=4?2*(block%2):mode==3?2*block:0);
int bx1 = bx0 + (mode>=4||mode==3?2:4);
for (block_y=by0; block_y<by1; block_y++)
for (block_x=bx0; block_x<bx1; block_x++)
{
y_pos = img->all_mv[block_x][block_y][ref][mode][1];
y_pos += (img->block_y+block_y) * BLOCK_SIZE * 4;
x_pos = img->all_mv[block_x][block_y][ref][mode][0];
x_pos += (img->block_x+block_x) * BLOCK_SIZE * 4;
/* Here we specify which pixels of the reference frame influence
the reference values and check their reliability. This is
based on the function Get_Reference_Pixel */
dy = y_pos & 3;
dx = x_pos & 3;
y_pos = (y_pos-dy)/4;
x_pos = (x_pos-dx)/4;
if (dy==0 && dx==0) //full-pel
{
for (y=0 ; y < BLOCK_SIZE ; y++)
for (x=0 ; x < BLOCK_SIZE ; x++)
if (pixel_map[max(0,min(maxold_y,y_pos+y))][max(0,min(maxold_x,x_pos+x))] < ref_frame)
return 0;
}
else /* other positions */
{
if (dy == 0)
{
for (y=0 ; y < BLOCK_SIZE ; y++)
for (x=0 ; x < BLOCK_SIZE ; x++)
{
pres_y = max(0,min(maxold_y,y_pos+y));
for(xx=-2;xx<4;xx++) {
pres_x = max(0,min(maxold_x,x_pos+x+xx));
if (pixel_map[pres_y][pres_x] < ref_frame)
return 0;
}
}
}
else if (dx == 0)
{
for (y=0 ; y < BLOCK_SIZE ; y++)
for (x=0 ; x < BLOCK_SIZE ; x++)
{
pres_x = max(0,min(maxold_x,x_pos+x));
for(yy=-2;yy<4;yy++) {
pres_y = max(0,min(maxold_y,y_pos+yy+y));
if (pixel_map[pres_y][pres_x] < ref_frame)
return 0;
}
}
}
else if (dx == 2)
{
for (y=0 ; y < BLOCK_SIZE ; y++)
for (x=0 ; x < BLOCK_SIZE ; x++)
{
for(yy=-2;yy<4;yy++) {
pres_y = max(0,min(maxold_y,y_pos+yy+y));
for(xx=-2;xx<4;xx++) {
pres_x = max(0,min(maxold_x,x_pos+xx+x));
if (pixel_map[pres_y][pres_x] < ref_frame)
return 0;
}
}
}
}
else if (dy == 2)
{
for (y=0 ; y < BLOCK_SIZE ; y++)
for (x=0 ; x < BLOCK_SIZE ; x++)
{
for(xx=-2;xx<4;xx++) {
pres_x = max(0,min(maxold_x,x_pos+xx+x));
for(yy=-2;yy<4;yy++) {
pres_y = max(0,min(maxold_y,y_pos+yy+y));
if (pixel_map[pres_y][pres_x] < ref_frame)
return 0;
}
}
}
}
else
{
for (y=0 ; y < BLOCK_SIZE ; y++)
for (x=0 ; x < BLOCK_SIZE ; x++)
{
pres_y = dy == 1 ? y_pos+y : y_pos+y+1;
pres_y = max(0,min(maxold_y,pres_y));
for(xx=-2;xx<4;xx++) {
pres_x = max(0,min(maxold_x,x_pos+xx+x));
if (pixel_map[pres_y][pres_x] < ref_frame)
return 0;
}
pres_x = dx == 1 ? x_pos+x : x_pos+x+1;
pres_x = max(0,min(maxold_x,pres_x));
for(yy=-2;yy<4;yy++) {
pres_y = max(0,min(maxold_y,y_pos+yy+y));
if (pixel_map[pres_y][pres_x] < ref_frame)
return 0;
}
}
}
}
}
return 1;
}
/*!
*************************************************************************************
* \brief
* R-D Cost for an 4x4 Intra block
*************************************************************************************
*/
double RDCost_for_4x4IntraBlocks (int* nonzero,
int b8,
int b4,
int ipmode,
double lambda,
double min_rdcost,
int mostProbableMode)
{
double rdcost;
int dummy, x, y, rate;
int distortion = 0;
int block_x = 8*(b8%2)+4*(b4%2);
int block_y = 8*(b8/2)+4*(b4/2);
int pic_pix_x = img->pix_x+block_x;
int pic_pix_y = img->pix_y+block_y;
int frame_pic_pix_y = pic_pix_y;
int pic_block_y = pic_pix_y/4;
int **ipredmodes = img->ipredmode;
byte **imgY_orig = imgY_org;
Slice *currSlice = img->currentSlice;
Macroblock *currMB = &img->mb_data[img->current_mb_nr];
SyntaxElement *currSE = &img->MB_SyntaxElements[currMB->currSEnr];
const int *partMap = assignSE2partition[input->partition_mode];
DataPartition *dataPart;
if(input->InterlaceCodingOption >= MB_CODING && mb_adaptive && img->field_mode)
{
pic_pix_y = img->field_pix_y + block_y;
pic_block_y = pic_pix_y/4;
ipredmodes = img->top_field ? img->ipredmode_top:img->ipredmode_bot;
imgY_orig = img->top_field ? imgY_org_top : imgY_org_bot;
}
//===== perform DCT, Q, IQ, IDCT, Reconstruction =====
dummy = 0;
*nonzero = dct_luma (block_x, block_y, &dummy, 1);
//===== get distortion (SSD) of 4x4 block =====
for (y=0; y<4; y++)
for (x=pic_pix_x; x<pic_pix_x+4; x++)
distortion += img->quad [imgY_orig[pic_pix_y+y][x] - imgY[frame_pic_pix_y+y][x]];
//===== RATE for INTRA PREDICTION MODE (SYMBOL MODE MUST BE SET TO UVLC) =====
currSE->value1 = (mostProbableMode == ipmode) ? -1 : ipmode < mostProbableMode ? ipmode : ipmode-1;
//--- set position and type ---
currSE->context = 4*b8 + b4;
currSE->type = SE_INTRAPREDMODE;
//--- set function pointer ----
if (input->symbol_mode != UVLC) currSE->writing = writeIntraPredMode2Buffer_CABAC;
//--- choose data partition ---
if (img->type!=B_IMG && img->type!=BS_IMG) dataPart = &(currSlice->partArr[partMap[SE_INTRAPREDMODE]]);
else dataPart = &(currSlice->partArr[partMap[SE_BFRAME]]);
//--- encode and update rate ---
if (input->symbol_mode == UVLC) writeSyntaxElement_Intra4x4PredictionMode(currSE, dataPart);
else dataPart->writeSyntaxElement (currSE, dataPart);
rate = currSE->len;
currSE++;
currMB->currSEnr++;
//===== RATE for LUMINANCE COEFFICIENTS =====
if (input->symbol_mode == UVLC)
{
rate += writeCoeff4x4_CAVLC (LUMA, b8, b4, 0);
}
else
{
rate += writeLumaCoeff4x4_CABAC (b8, b4, 1);
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -