Home
last modified time | relevance | path

Searched refs:nz_coeff (Results 1 – 9 of 9) sorted by relevance

/external/opencore/codecs_v2/video/avc_h264/common/src/
Ddeblock.cpp562 if (MbQ->nz_coeff[0] != 0 || MbP->nz_coeff[3] != 0) pStrength[0] = 2; in GetStrength_Edge0()
563 if (MbQ->nz_coeff[4] != 0 || MbP->nz_coeff[7] != 0) pStrength[1] = 2; in GetStrength_Edge0()
564 if (MbQ->nz_coeff[8] != 0 || MbP->nz_coeff[11] != 0) pStrength[2] = 2; in GetStrength_Edge0()
565 if (MbQ->nz_coeff[12] != 0 || MbP->nz_coeff[15] != 0) pStrength[3] = 2; in GetStrength_Edge0()
651 if (MbQ->nz_coeff[0] != 0 || MbP->nz_coeff[12] != 0) pStrength[0] = 2; in GetStrength_Edge0()
652 if (MbQ->nz_coeff[1] != 0 || MbP->nz_coeff[13] != 0) pStrength[1] = 2; in GetStrength_Edge0()
653 if (MbQ->nz_coeff[2] != 0 || MbP->nz_coeff[14] != 0) pStrength[2] = 2; in GetStrength_Edge0()
654 if (MbQ->nz_coeff[3] != 0 || MbP->nz_coeff[15] != 0) pStrength[3] = 2; in GetStrength_Edge0()
768 pnz = MbQ->nz_coeff + (idx << 2); in GetStrength_VerticalEdges()
831 pnz = MbQ->nz_coeff + ((idx + 1) << 2); in GetStrength_VerticalEdges()
[all …]
Dmb_access.cpp80 pred_nnz = video->currMB->nz_coeff[(j<<2)+i-1]; in predict_nnz()
87 pred_nnz = tempMB->nz_coeff[(j<<2)+3]; in predict_nnz()
103 pred_nnz += video->currMB->nz_coeff[((j-1)<<2)+i]; in predict_nnz()
111 pred_nnz += tempMB->nz_coeff[12+i]; in predict_nnz()
139 pred_nnz = video->currMB->nz_coeff[(j<<2)+i-1]; in predict_nnz_chroma()
147 pred_nnz = tempMB->nz_coeff[(j<<2)+i+1]; in predict_nnz_chroma()
163 pred_nnz += video->currMB->nz_coeff[((j-1)<<2)+i]; in predict_nnz_chroma()
171 pred_nnz += tempMB->nz_coeff[20+i]; in predict_nnz_chroma()
/external/opencore/codecs_v2/video/avc_h264/enc/src/
Dresidual.cpp168 TotalCoeff = currMB->nz_coeff[bindx]; in enc_residual_block()
182 TotalCoeff = currMB->nz_coeff[bindx]; in enc_residual_block()
208 TotalCoeff = currMB->nz_coeff[bindx]; in enc_residual_block()
Dslice.cpp244 currMB->nz_coeff[blkidx] = numcoeff; in EncodeMB()
273 currMB->nz_coeff[blkidx] = 0; in EncodeMB()
274 currMB->nz_coeff[blkidx+1] = 0; in EncodeMB()
275 currMB->nz_coeff[blkidx+4] = 0; in EncodeMB()
276 currMB->nz_coeff[blkidx+5] = 0; in EncodeMB()
297 oscl_memset(currMB->nz_coeff, 0, sizeof(uint8)*16); in EncodeMB()
Dblock.cpp279 if (currMB->nz_coeff[blkidx]) in MBInterIdct()
628 currMB->nz_coeff[blkIdx2blkXY[b8][b4]] = ncoeff; /* in raster scan !!! */ in dct_luma_16x16()
985 currMB->nz_coeff[16+(cr<<1)] = 0; in dct_chroma()
986 currMB->nz_coeff[17+(cr<<1)] = 0; in dct_chroma()
987 currMB->nz_coeff[20+(cr<<1)] = 0; in dct_chroma()
988 currMB->nz_coeff[21+(cr<<1)] = 0; in dct_chroma()
1024 currMB->nz_coeff[16+(b4&1)+(cr<<1)+((b4>>1)<<2)] = ncoeff; // in raster scan in dct_chroma()
Dintra_est.cpp676 currMB->nz_coeff[blkidx] = numcoef; in mb_intra4x4_search()
/external/opencore/codecs_v2/video/avc_h264/dec/src/
Dresidual.cpp223 oscl_memset(currMB->nz_coeff, 0, sizeof(uint8)*24); in residual()
261 currMB->nz_coeff[(j<<2)+i] = numcoeff; in residual()
333 currMB->nz_coeff[(j<<2)+i] = numcoeff; // in residual()
Dslice.cpp163 oscl_memset(currMB->nz_coeff, 0, sizeof(uint8)*NUM_BLKS_IN_MB); in DecodeMB()
257 oscl_memset(currMB->nz_coeff, 16, sizeof(uint8)*NUM_BLKS_IN_MB); in DecodeMB()
756 oscl_memset(currMB->nz_coeff, 0, sizeof(uint8)*NUM_BLKS_IN_MB); in ConcealSlice()
/external/opencore/codecs_v2/video/avc_h264/common/include/
Davcint_common.h599 …uint8 nz_coeff[NUM_BLKS_IN_MB]; /* [blk_y][blk_x], Chroma is [4..5][0...3], see predict_nnz() fun… member