📄 mb_access.cpp
字号:
/*!
*************************************************************************************
* \file mb_access.c
*
* \brief
* Functions for macroblock neighborhoods
*
* \author
* Main contributors (see contributors.h for copyright, address and affiliation details)
* - Karsten Suering <suehring@hhi.de>
*************************************************************************************
*/
#include "global.h"
/*!
************************************************************************
* \brief
* returns 1 if the macroblock at the given address is available
************************************************************************
*/
int mb_is_available(int mbAddr, int currMbAddr)
{
if ((mbAddr < 0) || (mbAddr > ((int)img->PicSizeInMbs - 1)))
return 0;
// the following line checks both: slice number and if the mb has been decoded
if (!img->DeblockCall)
{
if (img->mb_data[mbAddr].slice_nr != img->mb_data[currMbAddr].slice_nr)
return 0;
}
return 1;
}
/*!
************************************************************************
* \brief
* Checks the availability of neighboring macroblocks of
* the current macroblock for prediction and context determination;
************************************************************************
*/
void CheckAvailabilityOfNeighbors()
{
const int mb_nr = img->current_mb_nr;
Macroblock *currMB = &img->mb_data[mb_nr];
// mark all neighbors as unavailable
currMB->mb_available_up = NULL;
currMB->mb_available_left = NULL;
currMB->mbAddrA = mb_nr - 1;
currMB->mbAddrB = mb_nr - img->PicWidthInMbs;
currMB->mbAddrC = mb_nr - img->PicWidthInMbs + 1;
currMB->mbAddrD = mb_nr - img->PicWidthInMbs - 1;
currMB->mbAvailA = mb_is_available(currMB->mbAddrA, mb_nr) && ((mb_nr % img->PicWidthInMbs)!=0);
currMB->mbAvailB = mb_is_available(currMB->mbAddrB, mb_nr);
currMB->mbAvailC = mb_is_available(currMB->mbAddrC, mb_nr) && (((mb_nr+1) % img->PicWidthInMbs)!=0);
currMB->mbAvailD = mb_is_available(currMB->mbAddrD, mb_nr) && ((mb_nr % img->PicWidthInMbs)!=0);
}
/*!
************************************************************************
* \brief
* returns the x and y macroblock coordinates for a given MbAddress
************************************************************************
*/
void get_mb_block_pos (int mb_addr, int *x, int*y)
{
*x = (mb_addr % img->PicWidthInMbs);
*y = (mb_addr / img->PicWidthInMbs);
}
/*!
************************************************************************
* \brief
* returns the x and y sample coordinates for a given MbAddress
************************************************************************
*/
void get_mb_pos (int mb_addr, int *x, int*y)
{
*x = (mb_addr % img->PicWidthInMbs);
*y = (mb_addr / img->PicWidthInMbs);
(*x) <<= 4;
(*y) <<= 4;
}
/*!
************************************************************************
* \brief
* get neighbouring positions for non-aff coding
* \param curr_mb_nr
* current macroblock number (decoding order)
* \param xN
* input x position
* \param yN
* input y position
* \param pix
* returns position informations
************************************************************************
*/
void getLumaNeighbour(int curr_mb_nr, int xN, int yN, PixelPos *pix)
{
Macroblock *currMb = &img->mb_data[curr_mb_nr];
if ((xN<0)&&(yN<0))
{
pix->mb_addr = currMb->mbAddrD;
pix->available = currMb->mbAvailD;
}
else
if ((xN<0)&&((yN>=0)&&(yN<16)))
{
pix->mb_addr = currMb->mbAddrA;
pix->available = currMb->mbAvailA;
}
else
if (((xN>=0)&&(xN<16))&&(yN<0))
{
pix->mb_addr = currMb->mbAddrB;
pix->available = currMb->mbAvailB;
}
else
if (((xN>=0)&&(xN<16))&&((yN>=0)&&(yN<16)))
{
pix->mb_addr = curr_mb_nr;
pix->available = 1;
}
else
if ((xN>=16)&&(yN<0))
{
pix->mb_addr = currMb->mbAddrC;
pix->available = currMb->mbAvailC;
}
else
{
pix->available = 0;
}
if (pix->available || img->DeblockCall)
{
pix->x = (xN + 16) & 0x0f;
pix->y = (yN + 16) & 0x0f;
get_mb_pos(pix->mb_addr, &(pix->pos_x), &(pix->pos_y));
pix->pos_x += pix->x;
pix->pos_y += pix->y;
}
}
void getChromaNeighbour(int curr_mb_nr, int xN, int yN, PixelPos *pix)
{
Macroblock *currMb = &img->mb_data[curr_mb_nr];
if ((xN<0)&&(yN<0))
{
pix->mb_addr = currMb->mbAddrD;
pix->available = currMb->mbAvailD;
}
else
if ((xN<0)&&((yN>=0)&&(yN<8)))
{
pix->mb_addr = currMb->mbAddrA;
pix->available = currMb->mbAvailA;
}
else
if (((xN>=0)&&(xN<8))&&(yN<0))
{
pix->mb_addr = currMb->mbAddrB;
pix->available = currMb->mbAvailB;
}
else
if (((xN>=0)&&(xN<8))&&((yN>=0)&&(yN<8)))
{
pix->mb_addr = curr_mb_nr;
pix->available = 1;
}
else
if ((xN>=8)&&(yN<0))
{
pix->mb_addr = currMb->mbAddrC;
pix->available = currMb->mbAvailC;
}
else
{
pix->available = 0;
}
if (pix->available || img->DeblockCall)
{
pix->x = (xN + 8) & 0x07;
pix->y = (yN + 8) & 0x07;
get_mb_pos(pix->mb_addr, &(pix->pos_x), &(pix->pos_y));
pix->pos_x = (pix->pos_x>>1) + pix->x;
pix->pos_y = (pix->pos_y>>1) + pix->y;
}
}
/*!
************************************************************************
* \brief
* get neighbouring get neighbouring 4x4 luma block
* \param curr_mb_nr
* current macroblock number (decoding order)
* \param block_x
* input x block position
* \param block_y
* input y block position
* \param rel_x
* relative x position of neighbor
* \param rel_y
* relative y position of neighbor
* \param pix
* returns position informations
************************************************************************
*/
void getLuma4x4Neighbour (int curr_mb_nr, int block_x, int block_y, int rel_x, int rel_y, PixelPos *pix)
{
int x = (block_x<<2) + rel_x;
int y = (block_y<<2) + rel_y;
getLumaNeighbour(curr_mb_nr, x, y, pix);
if (pix->available)
{
pix->x >>= 2;
pix->y >>= 2;
pix->pos_x >>= 2;
pix->pos_y >>= 2;
}
}
/*!
************************************************************************
* \brief
* get neighbouring 4x4 chroma block
* \param curr_mb_nr
* current macroblock number (decoding order)
* \param block_x
* input x block position
* \param block_y
* input y block position
* \param rel_x
* relative x position of neighbor
* \param rel_y
* relative y position of neighbor
* \param pix
* returns position informations
************************************************************************
*/
void getChroma4x4Neighbour (int curr_mb_nr, int block_x, int block_y, int rel_x, int rel_y, PixelPos *pix)
{
int x = (block_x<<2) + rel_x;
int y = (block_y<<2) + rel_y;
getChromaNeighbour(curr_mb_nr, x, y, pix);
if (pix->available)
{
pix->x >>= 2;
pix->y >>= 2;
pix->pos_x >>= 2;
pix->pos_y >>= 2;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -