📄 cabac.c
字号:
{
refframe_array = img->bw_refFrArr_bot;
block_y = ( img->block_y - 4 ) / 2;
}
else
{
refframe_array = img->bw_refFrArr_top;
block_y = img->block_y / 2;
}
}
#define REF_IDX(r) ((img->num_ref_pic_active_bwd>1 && (r)<2) ? (1-(r)):(r))
if ((img->subblock_y == 0) && ((currMB->mb_available[0][1] == NULL) || (IS_DIRECT(currMB->mb_available[0][1]))))
b = 0;
else
{
/*===== HS: the chosen refframe_array should already contain the scale versions of RefIdx =====
if (img->structure==FRAME && img->mb_frame_field_flag
&& (currMB->mb_field == 0) && (currMB->mb_available[0][1]->mb_field == 1))
b = (REF_IDX(refframe_array[block_y+img->subblock_y-1][img->block_x+img->subblock_x]) > 1 ? 1 : 0);
else
*/
b = (REF_IDX(refframe_array[block_y+img->subblock_y-1][img->block_x+img->subblock_x]) > 0 ? 1 : 0);
}
if ((img->subblock_x == 0) && ((currMB->mb_available[1][0] == NULL) || (IS_DIRECT(currMB->mb_available[1][0]))))
a = 0;
else
{
/*===== HS: the chosen refframe_array should already contain the scale versions of RefIdx =====
if (img->structure==FRAME && img->mb_frame_field_flag
&& (currMB->mb_field == 0) && (currMB->mb_available[1][0]->mb_field == 1))
a = (REF_IDX(refframe_array[block_y+img->subblock_y][img->block_x+img->subblock_x-1]) > 1 ? 1 : 0);
else
*/
a = (REF_IDX(refframe_array[block_y+img->subblock_y][img->block_x+img->subblock_x-1]) > 0 ? 1 : 0);
}
#undef REF_IDX
act_ctx = a + 2*b;
se->context = act_ctx; // store context
act_sym = biari_decode_symbol(dep_dp,ctx->ref_no_contexts[addctx] + act_ctx );
if (act_sym != 0)
{
act_ctx = 4;
act_sym = unary_bin_decode(dep_dp,ctx->ref_no_contexts[addctx]+act_ctx,1);
act_sym++;
}
se->value1 = act_sym;
#if TRACE
fprintf(p_trace, "@%d%s\t\t\t%d",symbolCount++, se->tracestring, se->value1);
// fprintf(p_trace," c: %d :%d \n",ctx->ref_no_contexts[addctx][act_ctx].cum_freq[0],ctx->ref_no_contexts[addctx][act_ctx].cum_freq[1]);
fflush(p_trace);
// commented out, does not compile. karll@real.com
#endif
}
/*!
************************************************************************
* \brief
* This function is used to arithmetically decode the motion
* vector data of a given MB.
************************************************************************
*/
void readMVDFromBuffer_CABAC(SyntaxElement *se,
struct inp_par *inp,
struct img_par *img,
DecodingEnvironmentPtr dep_dp)
{
int i = img->subblock_x;
int j = img->subblock_y;
int a, b;
int act_ctx;
int act_sym;
int mv_pred_res;
int mv_local_err;
int mv_sign;
int k = se->value2; // MVD component
MotionInfoContexts *ctx = img->currentSlice->mot_ctx;
Macroblock *currMB = &img->mb_data[img->map_mb_nr];//GB current_mb_nr];
if (j==0)
{
if (currMB->mb_available[0][1] == NULL)
b = 0;
else
{
b = absm((currMB->mb_available[0][1])->mvd[0][BLOCK_SIZE-1][i][k]);
if (img->structure==FRAME && img->mb_frame_field_flag && (k==1))
{
if ((currMB->mb_field==0) && (currMB->mb_available[0][1]->mb_field==1))
b *= 2;
else if ((currMB->mb_field==1) && (currMB->mb_available[0][1]->mb_field==0))
b /= 2;
}
}
}
else
b = absm(currMB->mvd[0][j-1/*step_v*/][i][k]);
if (i==0)
{
if (currMB->mb_available[1][0] == NULL)
a = 0;
else
{
a = absm((currMB->mb_available[1][0])->mvd[0][j][BLOCK_SIZE-1][k]);
if (img->structure==FRAME && img->mb_frame_field_flag && (k==1))
{
if ((currMB->mb_field==0) && (currMB->mb_available[1][0]->mb_field==1))
a *= 2;
else if ((currMB->mb_field==1) && (currMB->mb_available[1][0]->mb_field==0))
a /= 2;
}
}
}
else
a = absm(currMB->mvd[0][j][i-1/*step_h*/][k]);
if ((mv_local_err=a+b)<3)
act_ctx = 5*k;
else
{
if (mv_local_err>32)
act_ctx=5*k+3;
else
act_ctx=5*k+2;
}
se->context = act_ctx;
act_sym = biari_decode_symbol(dep_dp, &ctx->mv_res_contexts[0][act_ctx] );
if (act_sym == 0)
{
mv_pred_res = 0;
}
else
{
act_ctx=5*k;
act_sym = unary_exp_golomb_mv_decode(dep_dp,ctx->mv_res_contexts[1]+act_ctx,3);
act_sym++;
mv_sign = biari_decode_symbol_eq_prob(dep_dp);
mv_pred_res = ((mv_sign != 0) ? (-act_sym) : act_sym);
}
se->value1 = mv_pred_res;
#if TRACE
fprintf(p_trace, "@%d %s\t\t\t%d %d\n",symbolCount++, se->tracestring, se->value1,a+b);
fflush(p_trace);
#endif
}
/*!
************************************************************************
* \brief
* This function is used to arithmetically decode the delta qp
* of a given MB.
************************************************************************
*/
void readDquant_FromBuffer_CABAC(SyntaxElement *se,
struct inp_par *inp,
struct img_par *img,
DecodingEnvironmentPtr dep_dp)
{
MotionInfoContexts *ctx = img->currentSlice->mot_ctx;
Macroblock *currMB = &img->mb_data[img->map_mb_nr];//GB current_mb_nr];
int act_ctx;
int act_sym;
int dquant;
if (currMB->mb_available[1][0] == NULL)
act_ctx = 0;
else
act_ctx = ( ((currMB->mb_available[1][0])->delta_quant != 0) ? 1 : 0);
act_sym = biari_decode_symbol(dep_dp,ctx->delta_qp_contexts + act_ctx );
if (act_sym != 0)
{
act_ctx = 2;
act_sym = unary_bin_decode(dep_dp,ctx->delta_qp_contexts+act_ctx,1);
act_sym++;
}
dquant = (act_sym+1)/2;
if((act_sym & 0x01)==0) // lsb is signed bit
dquant = -dquant;
se->value1 = dquant;
#if TRACE
fprintf(p_trace, "@%d%s\t\t\t%d\n",symbolCount++, se->tracestring, se->value1);
fflush(p_trace);
#endif
}
/*!
************************************************************************
* \brief
* This function is used to arithmetically decode the coded
* block pattern of a given MB.
************************************************************************
*/
void readCBPFromBuffer_CABAC(SyntaxElement *se,
struct inp_par *inp,
struct img_par *img,
DecodingEnvironmentPtr dep_dp)
{
TextureInfoContexts *ctx = img->currentSlice->tex_ctx;
Macroblock *currMB = &img->mb_data[img->map_mb_nr];//GB current_mb_nr];
int mb_x, mb_y;
int a, b;
int curr_cbp_ctx, curr_cbp_idx;
int cbp = 0;
int cbp_bit;
int mask;
// coding of luma part (bit by bit)
for (mb_y=0; mb_y < 4; mb_y += 2)
{
for (mb_x=0; mb_x < 4; mb_x += 2)
{
if (currMB->b8mode[mb_y+(mb_x/2)]==IBLOCK)
curr_cbp_idx = 0;
else
curr_cbp_idx = 1;
if (mb_y == 0)
{
if (currMB->mb_available[0][1] == NULL)
b = 0;
else
b = (( ((currMB->mb_available[0][1])->cbp & (1<<(2+mb_x/2))) == 0) ? 1 : 0);
}
else
b = ( ((cbp & (1<<(mb_x/2))) == 0) ? 1: 0);
if (mb_x == 0)
{
if (currMB->mb_available[1][0] == NULL)
a = 0;
else
a = (( ((currMB->mb_available[1][0])->cbp & (1<<(mb_y+1))) == 0) ? 1 : 0);
}
else
a = ( ((cbp & (1<<mb_y)) == 0) ? 1: 0);
curr_cbp_ctx = a+2*b;
mask = (1<<(mb_y+mb_x/2));
cbp_bit = biari_decode_symbol(dep_dp, ctx->cbp_contexts[0] + curr_cbp_ctx );
if (cbp_bit) cbp += mask;
}
}
if ( se->type == SE_CBP_INTRA )
curr_cbp_idx = 0;
else
curr_cbp_idx = 1;
// coding of chroma part
b = 0;
if (currMB->mb_available[0][1] != NULL)
b = ((currMB->mb_available[0][1])->cbp > 15) ? 1 : 0;
a = 0;
if (currMB->mb_available[1][0] != NULL)
a = ((currMB->mb_available[1][0])->cbp > 15) ? 1 : 0;
curr_cbp_ctx = a+2*b;
cbp_bit = biari_decode_symbol(dep_dp, ctx->cbp_contexts[1] + curr_cbp_ctx );
if (cbp_bit) // set the chroma bits
{
b = 0;
if (currMB->mb_available[0][1] != NULL)
if ((currMB->mb_available[0][1])->cbp > 15)
b = (( ((currMB->mb_available[0][1])->cbp >> 4) == 2) ? 1 : 0);
a = 0;
if (currMB->mb_available[1][0] != NULL)
if ((currMB->mb_available[1][0])->cbp > 15)
a = (( ((currMB->mb_available[1][0])->cbp >> 4) == 2) ? 1 : 0);
curr_cbp_ctx = a+2*b;
cbp_bit = biari_decode_symbol(dep_dp, ctx->cbp_contexts[2] + curr_cbp_ctx );
cbp += (cbp_bit == 1) ? 32 : 16;
}
se->value1 = cbp;
#if TRACE
fprintf(p_trace, "@%d %s\t\t\t%d\n",symbolCount++, se->tracestring, se->value1);
fflush(p_trace);
#endif
}
/*!
************************************************************************
* \brief
* This function is used to arithmetically decode the chroma
* intra prediction mode of a given MB.
************************************************************************
*/ //GB
void readCIPredMode_FromBuffer_CABAC(SyntaxElement *se,
struct inp_par *inp,
struct img_par *img,
DecodingEnvironmentPtr dep_dp)
{
TextureInfoContexts *ctx = img->currentSlice->tex_ctx;
Macroblock *currMB = &img->mb_data[img->map_mb_nr];
int act_ctx,a,b;
int act_sym = se->value1;
if (currMB->mb_available[0][1] == NULL) b = 0;
else b = ( ((currMB->mb_available[0][1])->c_ipred_mode != 0) ? 1 : 0);
if (currMB->mb_available[1][0] == NULL) a = 0;
else a = ( ((currMB->mb_available[1][0])->c_ipred_mode != 0) ? 1 : 0);
act_ctx = a+b;
act_sym = biari_decode_symbol(dep_dp, ctx->cipr_contexts + act_ctx );
if (act_sym!=0)
act_sym = unary_bin_max_decode(dep_dp,ctx->cipr_contexts+3,0,2)+1;
se->value1 = act_sym;
#if TRACE
fprintf(p_trace, "@%d%s\t\t\t%d\n",symbolCount++, se->tracestring, se->value1);
fflush(p_trace);
#endif
}
static const int maxpos [] = {16, 15, 64, 32, 32, 16, 4, 15};
static const int c1isdc [] = { 1, 0, 1, 1, 1, 1, 1, 0};
static const int type2ctx_bcbp[] = { 0, 1, 2, 2, 3, 4, 5, 6}; // 7
static const int type2ctx_map [] = { 0, 1, 2, 3, 4, 5, 6, 7}; // 8
static const int type2ctx_last[] = { 0, 1, 2, 3, 4, 5, 6, 7}; // 8
static const int type2ctx_one [] = { 0, 1, 2, 3, 3, 4, 5, 6}; // 7
static const int type2ctx_abs [] = { 0, 1, 2, 3, 3, 4, 5, 6}; // 7
/*!
************************************************************************
* \brief
* Read CBP4-BIT
************************************************************************
*/
int read_and_store_CBP_block_bit (Macroblock *currMB,
DecodingEnvironmentPtr dep_dp,
struct img_par *img,
int type)
{
#define BIT_SET(x,n) ((int)(((x)&(1<<(n)))>>(n)))
int y_ac = (type==LUMA_16AC || type==LUMA_8x8 || type==LUMA_8x4 || type==LUMA_4x8 || type==LUMA_4x4);
int y_dc = (type==LUMA_16DC);
int u_ac = (type==CHROMA_AC && !img->is_v_block);
int v_ac = (type==CHROMA_AC && img->is_v_block);
int u_dc = (type==CHROMA_DC && !img->is_v_block);
int v_dc = (type==CHROMA_DC && img->is_v_block);
int j = (y_ac || u_ac || v_ac ? img->subblock_y : 0);
int i = (y_ac || u_ac || v_ac ? img->subblock_x : 0);
int bit = (y_dc ? 0 : y_ac ? 1+4*j+i : u_dc ? 17 : v_dc ? 18 : u_ac ? 19+2*j+i : 23+2*j+i);
int ystep_back = (y_ac ? 12 : u_ac || v_ac ? 2 : 0);
int xstep_back = (y_ac ? 3 : u_ac || v_ac ? 1 : 0);
int ystep = (y_ac ? 4 : u_ac || v_ac ? 2 : 0);
int default_bit = (img->is_intra_block ? 1 : 0);
int upper_bit = default_bit;
int left_bit = default_bit;
int cbp_bit = 1; // always one for 8x8 mode
int ctx;
if (type!=LUMA_8x8)
{
//--- get bits from neighbouring blocks ---
if (j==0)
{
if (currMB->mb_available[0][1])
{
upper_bit = BIT_SET(currMB->mb_available[0][1]->cbp_bits,bit+ystep_back);
}
}
else
{
upper_bit = BIT_SET(currMB->cbp_bits,bit-ystep);
}
if (i==0)
{
if (currMB->mb_available[1][0])
{
left_bit = BIT_SET(currMB->mb_available[1][0]->cbp_bits,bit+xstep_back);
}
}
else
{
left_bit = BIT_SET(currMB->cbp_bits,bit-1);
}
ctx = 2*upper_bit+left_bit;
//===== encode symbol =====
cbp_bit = biari_decode_symbol (dep_dp, img->currentSlice->tex_ctx->bcbp_contexts[type2ctx_bcbp[type]] + ctx);
}
//--- set bits for current block ---
if (cbp_bit)
{
if (type==LUMA_8x8)
{
currMB->cbp_bits |= (1<< bit );
currMB->cbp_bits |= (1<<(bit+1));
currMB->cbp_bits |= (1<<(bit+4));
currMB->cbp_bits |= (1<<(bit+5));
}
else if (type==LUMA_8x4)
{
currMB->cbp_bits |= (1<< bit );
currMB->cbp_bits |= (1<<(bit+1));
}
else if (type==LUMA_4x8)
{
currMB->cbp_bits |= (1<< bit );
currMB->cbp_bits |= (1<<(bit+4));
}
else
{
currMB->cbp_bits |= (1<<bit);
}
}
return cbp_bit;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -