mirror of
https://github.com/ultravideo/uvg266.git
synced 2024-11-24 02:24:07 +00:00
Modified residual coding to allow inter block data (BUGGY!)
This commit is contained in:
parent
9bad984f14
commit
192b077dba
|
@ -1100,21 +1100,60 @@ void encode_coding_tree(encoder_control* encoder,uint16_t xCtb,uint16_t yCtb, ui
|
||||||
}
|
}
|
||||||
|
|
||||||
cabac.ctx = &g_cu_qt_root_cbf_model;
|
cabac.ctx = &g_cu_qt_root_cbf_model;
|
||||||
CABAC_BIN(&cabac, 0, "rqt_root_cbf");
|
CABAC_BIN(&cabac, 1, "rqt_root_cbf");
|
||||||
if(0)
|
if(1)
|
||||||
{
|
{
|
||||||
|
uint8_t *base = &encoder->in.cur_pic->y_data[xCtb*(LCU_WIDTH>>(MAX_DEPTH)) + (yCtb*(LCU_WIDTH>>(MAX_DEPTH))) *encoder->in.width];
|
||||||
|
uint8_t *baseU = &encoder->in.cur_pic->u_data[xCtb*(LCU_WIDTH>>(MAX_DEPTH+1)) + (yCtb*(LCU_WIDTH>>(MAX_DEPTH+1)))*(encoder->in.width>>1)];
|
||||||
|
uint8_t *baseV = &encoder->in.cur_pic->v_data[xCtb*(LCU_WIDTH>>(MAX_DEPTH+1)) + (yCtb*(LCU_WIDTH>>(MAX_DEPTH+1)))*(encoder->in.width>>1)];
|
||||||
|
uint32_t width = LCU_WIDTH>>depth;
|
||||||
|
|
||||||
|
/* INTRAPREDICTION VARIABLES */
|
||||||
|
int16_t pred[LCU_WIDTH*LCU_WIDTH+1];
|
||||||
|
int16_t predU[LCU_WIDTH*LCU_WIDTH>>2];
|
||||||
|
int16_t predV[LCU_WIDTH*LCU_WIDTH>>2];
|
||||||
|
|
||||||
|
uint8_t *recbase = &encoder->in.cur_pic->y_recdata[xCtb*(LCU_WIDTH>>(MAX_DEPTH)) + (yCtb*(LCU_WIDTH>>(MAX_DEPTH))) *encoder->in.width];
|
||||||
|
uint8_t *recbaseU = &encoder->in.cur_pic->u_recdata[xCtb*(LCU_WIDTH>>(MAX_DEPTH+1)) + (yCtb*(LCU_WIDTH>>(MAX_DEPTH+1)))*(encoder->in.width>>1)];
|
||||||
|
uint8_t *recbaseV = &encoder->in.cur_pic->v_recdata[xCtb*(LCU_WIDTH>>(MAX_DEPTH+1)) + (yCtb*(LCU_WIDTH>>(MAX_DEPTH+1)))*(encoder->in.width>>1)];
|
||||||
|
|
||||||
|
/* TODO: dynamic memory allocation */
|
||||||
|
int16_t coeff[LCU_WIDTH*LCU_WIDTH*2];
|
||||||
|
int16_t coeffU[LCU_WIDTH*LCU_WIDTH>>1];
|
||||||
|
int16_t coeffV[LCU_WIDTH*LCU_WIDTH>>1];
|
||||||
|
|
||||||
|
/* Initialize helper structure for transform */
|
||||||
transform_info ti;
|
transform_info ti;
|
||||||
memset(&ti, 0, sizeof(transform_info));
|
memset(&ti, 0, sizeof(transform_info));
|
||||||
|
|
||||||
ti.x_ctb = xCtb; ti.y_ctb = yCtb;
|
ti.x_ctb = xCtb; ti.y_ctb = yCtb;
|
||||||
|
|
||||||
/* Coded block pattern */
|
/* Base pointers */
|
||||||
ti.cb_top[0] = 0;
|
ti.base = base; ti.base_u = baseU; ti.base_v = baseV;
|
||||||
ti.cb_top[1] = 0;
|
ti.base_stride = encoder->in.width;
|
||||||
ti.cb_top[2] = 0;
|
|
||||||
ti.split[0] = 0;
|
|
||||||
|
|
||||||
/* Code (possible) coeffs to bitstream */
|
// Prediction pointers
|
||||||
|
ti.pred = pred; ti.pred_u = predU; ti.pred_v = predV;
|
||||||
|
ti.pred_stride = (LCU_WIDTH>>depth);
|
||||||
|
|
||||||
|
// Reconstruction pointers
|
||||||
|
ti.recbase = recbase; ti.recbase_u = recbaseU; ti.recbase_v = recbaseV;
|
||||||
|
ti.recbase_stride = encoder->in.width;
|
||||||
|
|
||||||
|
// Coeff pointers
|
||||||
|
ti.coeff[0] = coeff; ti.coeff[1] = coeffU; ti.coeff[2] = coeffV;
|
||||||
|
ti.block_type = CU_INTER;
|
||||||
|
|
||||||
|
// Handle transforms, quant and reconstruction
|
||||||
|
ti.idx = 0;
|
||||||
|
encode_transform_tree(encoder,&ti, depth);
|
||||||
|
|
||||||
|
// Coded block pattern
|
||||||
|
ti.cb_top[0] = (ti.cb[0] & 0x1 || ti.cb[1] & 0x1 || ti.cb[2] & 0x1 || ti.cb[3] & 0x1)?1:0;
|
||||||
|
ti.cb_top[1] = (ti.cb[0] & 0x2 || ti.cb[1] & 0x2 || ti.cb[2] & 0x2 || ti.cb[3] & 0x2)?1:0;
|
||||||
|
ti.cb_top[2] = (ti.cb[0] & 0x4 || ti.cb[1] & 0x4 || ti.cb[2] & 0x4 || ti.cb[3] & 0x4)?1:0;
|
||||||
|
|
||||||
|
// Code (possible) coeffs to bitstream
|
||||||
ti.idx = 0;
|
ti.idx = 0;
|
||||||
encode_transform_coeff(encoder, &ti,depth, 0);
|
encode_transform_coeff(encoder, &ti,depth, 0);
|
||||||
}
|
}
|
||||||
|
@ -1291,6 +1330,7 @@ void encode_coding_tree(encoder_control* encoder,uint16_t xCtb,uint16_t yCtb, ui
|
||||||
|
|
||||||
/* Handle transforms, quant and reconstruction */
|
/* Handle transforms, quant and reconstruction */
|
||||||
ti.idx = 0;
|
ti.idx = 0;
|
||||||
|
ti.block_type = CU_INTRA;
|
||||||
encode_transform_tree(encoder,&ti, depth);
|
encode_transform_tree(encoder,&ti, depth);
|
||||||
|
|
||||||
/* Coded block pattern */
|
/* Coded block pattern */
|
||||||
|
@ -1432,7 +1472,8 @@ void encode_transform_tree(encoder_control* encoder,transform_info* ti,uint8_t d
|
||||||
int16_t *recShiftU = &rec[(LCU_WIDTH>>(depth+1))*2+8+1];
|
int16_t *recShiftU = &rec[(LCU_WIDTH>>(depth+1))*2+8+1];
|
||||||
|
|
||||||
uint32_t ac_sum = 0;
|
uint32_t ac_sum = 0;
|
||||||
|
if(ti->block_type == CU_INTRA)
|
||||||
|
{
|
||||||
/* Build reconstructed block to use in prediction with extrapolated borders */
|
/* Build reconstructed block to use in prediction with extrapolated borders */
|
||||||
intra_build_reference_border(encoder->in.cur_pic, ti->x_ctb, ti->y_ctb,(LCU_WIDTH>>(depth))*2+8, rec, (LCU_WIDTH>>(depth))*2+8, 0);
|
intra_build_reference_border(encoder->in.cur_pic, ti->x_ctb, ti->y_ctb,(LCU_WIDTH>>(depth))*2+8, rec, (LCU_WIDTH>>(depth))*2+8, 0);
|
||||||
intra_recon(recShift,(LCU_WIDTH>>(depth))*2+8,ti->x_ctb*(LCU_WIDTH>>(MAX_DEPTH)),ti->y_ctb*(LCU_WIDTH>>(MAX_DEPTH)),width,pred,pred_stride,ti->intra_pred_mode,0);
|
intra_recon(recShift,(LCU_WIDTH>>(depth))*2+8,ti->x_ctb*(LCU_WIDTH>>(MAX_DEPTH)),ti->y_ctb*(LCU_WIDTH>>(MAX_DEPTH)),width,pred,pred_stride,ti->intra_pred_mode,0);
|
||||||
|
@ -1453,7 +1494,20 @@ void encode_transform_tree(encoder_control* encoder,transform_info* ti,uint8_t d
|
||||||
|
|
||||||
/* This affects reconstruction, do after that */
|
/* This affects reconstruction, do after that */
|
||||||
picture_set_block_coded(encoder->in.cur_pic, ti->x_ctb, ti->y_ctb, depth, 1);
|
picture_set_block_coded(encoder->in.cur_pic, ti->x_ctb, ti->y_ctb, depth, 1);
|
||||||
|
} else { // Inter mode
|
||||||
|
for(y = 0; y < LCU_WIDTH>>depth; y++) {
|
||||||
|
for(x = 0; x < LCU_WIDTH>>depth; x++) {
|
||||||
|
pred[x+y*pred_stride]=recbase[x+y*base_stride];
|
||||||
|
}
|
||||||
|
}
|
||||||
|
for(y = 0; y < LCU_WIDTH>>(depth+1); y++) {
|
||||||
|
for(x = 0; x < LCU_WIDTH>>(depth+1); x++) {
|
||||||
|
predU[x+y*(pred_stride>>1)]=recbaseU[x+y*(base_stride>>1)];
|
||||||
|
predV[x+y*(pred_stride>>1)]=recbaseV[x+y*(base_stride>>1)];
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
/* INTRA PREDICTION ENDS HERE */
|
/* INTRA PREDICTION ENDS HERE */
|
||||||
|
|
||||||
/* Get residual by subtracting prediction */
|
/* Get residual by subtracting prediction */
|
||||||
|
@ -1637,7 +1691,7 @@ void encode_transform_tree(encoder_control* encoder,transform_info* ti,uint8_t d
|
||||||
void encode_transform_coeff(encoder_control* encoder,transform_info* ti,int8_t depth, int8_t trDepth)
|
void encode_transform_coeff(encoder_control* encoder,transform_info* ti,int8_t depth, int8_t trDepth)
|
||||||
{
|
{
|
||||||
int8_t width = LCU_WIDTH>>depth;
|
int8_t width = LCU_WIDTH>>depth;
|
||||||
int8_t split = (ti->split[ti->idx]&(1<<depth))?1:0;
|
int8_t split = ((ti->split[ti->idx]&(1<<depth))||!depth)?1:0;
|
||||||
int8_t CbY,CbU,CbV;
|
int8_t CbY,CbU,CbV;
|
||||||
int32_t coeff_fourth = ((LCU_WIDTH>>(depth))*(LCU_WIDTH>>(depth)))+1;
|
int32_t coeff_fourth = ((LCU_WIDTH>>(depth))*(LCU_WIDTH>>(depth)))+1;
|
||||||
|
|
||||||
|
@ -1680,9 +1734,11 @@ void encode_transform_coeff(encoder_control* encoder,transform_info* ti,int8_t d
|
||||||
CbU = (ti->cb[ti->idx]&0x2)?1:0;
|
CbU = (ti->cb[ti->idx]&0x2)?1:0;
|
||||||
CbV = (ti->cb[ti->idx]&0x4)?1:0;
|
CbV = (ti->cb[ti->idx]&0x4)?1:0;
|
||||||
|
|
||||||
/* Non-zero luma Tcoeffs */
|
if(ti->block_type == CU_INTRA || trDepth || CbU || CbV) {
|
||||||
|
// Non-zero luma Tcoeffs
|
||||||
cabac.ctx = &g_qt_cbf_model_luma[trDepth?0:1];
|
cabac.ctx = &g_qt_cbf_model_luma[trDepth?0:1];
|
||||||
CABAC_BIN(&cabac,CbY,"cbf_luma");
|
CABAC_BIN(&cabac,CbY,"cbf_luma");
|
||||||
|
}
|
||||||
|
|
||||||
{
|
{
|
||||||
uint32_t uiCTXIdx;
|
uint32_t uiCTXIdx;
|
||||||
|
@ -1703,30 +1759,36 @@ void encode_transform_coeff(encoder_control* encoder,transform_info* ti,int8_t d
|
||||||
/* Residual Coding */
|
/* Residual Coding */
|
||||||
if(CbY)
|
if(CbY)
|
||||||
{
|
{
|
||||||
|
if(ti->block_type == CU_INTER) {
|
||||||
|
uiScanIdx = SCAN_DIAG;
|
||||||
|
} else {
|
||||||
/* Luma (Intra) scanmode */
|
/* Luma (Intra) scanmode */
|
||||||
uiDirMode = ti->intra_pred_mode;
|
uiDirMode = ti->intra_pred_mode;
|
||||||
if (uiCTXIdx >3 && uiCTXIdx < 6) //if multiple scans supported for transform size
|
if (uiCTXIdx >3 && uiCTXIdx < 6) { //if multiple scans supported for transform size
|
||||||
{
|
|
||||||
uiScanIdx = abs((int32_t) uiDirMode - 26) < 5 ? 1 : (abs((int32_t)uiDirMode - 10) < 5 ? 2 : 0);
|
uiScanIdx = abs((int32_t) uiDirMode - 26) < 5 ? 1 : (abs((int32_t)uiDirMode - 10) < 5 ? 2 : 0);
|
||||||
}
|
}
|
||||||
|
}
|
||||||
encode_CoeffNxN(encoder,&ti->coeff[0][ti->idx*coeff_fourth], width, 0, uiScanIdx);
|
encode_CoeffNxN(encoder,&ti->coeff[0][ti->idx*coeff_fourth], width, 0, uiScanIdx);
|
||||||
}
|
}
|
||||||
if(CbU||CbV)
|
if(CbU||CbV)
|
||||||
{
|
{
|
||||||
int8_t chromaWidth = width>>1;
|
int8_t chromaWidth = width>>1;
|
||||||
|
|
||||||
|
if(ti->block_type == CU_INTER) {
|
||||||
|
uiScanIdx = SCAN_DIAG;
|
||||||
|
} else {
|
||||||
/* Chroma scanmode */
|
/* Chroma scanmode */
|
||||||
uiCTXIdx++;
|
uiCTXIdx++;
|
||||||
uiDirMode = ti->intra_pred_mode_chroma;
|
uiDirMode = ti->intra_pred_mode_chroma;
|
||||||
if(uiDirMode==36)
|
if(uiDirMode==36) {
|
||||||
{
|
|
||||||
/* TODO: support NxN */
|
/* TODO: support NxN */
|
||||||
uiDirMode = ti->intra_pred_mode;
|
uiDirMode = ti->intra_pred_mode;
|
||||||
}
|
}
|
||||||
uiScanIdx = SCAN_DIAG;
|
uiScanIdx = SCAN_DIAG;
|
||||||
if (uiCTXIdx >4 && uiCTXIdx < 7) //if multiple scans supported for transform size
|
if (uiCTXIdx >4 && uiCTXIdx < 7) { //if multiple scans supported for transform size
|
||||||
{
|
|
||||||
uiScanIdx = abs((int32_t) uiDirMode - 26) < 5 ? 1 : (abs((int32_t)uiDirMode - 10) < 5 ? 2 : 0);
|
uiScanIdx = abs((int32_t) uiDirMode - 26) < 5 ? 1 : (abs((int32_t)uiDirMode - 10) < 5 ? 2 : 0);
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
if(CbU)
|
if(CbU)
|
||||||
{
|
{
|
||||||
|
@ -1734,7 +1796,7 @@ void encode_transform_coeff(encoder_control* encoder,transform_info* ti,int8_t d
|
||||||
}
|
}
|
||||||
if(CbV)
|
if(CbV)
|
||||||
{
|
{
|
||||||
encode_CoeffNxN(encoder,&ti->coeff[2][ti->idx*coeff_fourth>>1], chromaWidth, 2, uiScanIdx);
|
encode_CoeffNxN(encoder,&ti->coeff[2][ti->idx*coeff_fourth>>1], chromaWidth, 3, uiScanIdx);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -94,6 +94,8 @@ typedef struct
|
||||||
int8_t intra_pred_mode_chroma;
|
int8_t intra_pred_mode_chroma;
|
||||||
int32_t split[4];
|
int32_t split[4];
|
||||||
|
|
||||||
|
int8_t block_type;
|
||||||
|
|
||||||
int32_t x_ctb,y_ctb;
|
int32_t x_ctb,y_ctb;
|
||||||
|
|
||||||
} transform_info;
|
} transform_info;
|
||||||
|
|
Loading…
Reference in a new issue