Home
last modified time | relevance | path

Searched refs:bindx (Results 1 – 4 of 4) sorted by relevance

/external/opencore/codecs_v2/video/avc_h264/enc/src/
Dresidual.cpp160 int bindx = blkIdx2blkXY[cindx>>2][cindx&3] ; // raster scan index in enc_residual_block() local
168 TotalCoeff = currMB->nz_coeff[bindx]; in enc_residual_block()
175 bindx = 0; in enc_residual_block()
182 TotalCoeff = currMB->nz_coeff[bindx]; in enc_residual_block()
206 bindx = 16 + blkIdx2blkXY[cindx>>2][cindx&3]; in enc_residual_block()
208 TotalCoeff = currMB->nz_coeff[bindx]; in enc_residual_block()
242 nC = predict_nnz(video, bindx & 3, bindx >> 2); in enc_residual_block()
246 nC = predict_nnz_chroma(video, bindx & 3, bindx >> 2); in enc_residual_block()
Dslice.cpp930 int bindx = 0; in EncodeIntra4x4Mode() local
1016 bindx++; in EncodeIntra4x4Mode()
Davcenc_lib.h797 …AVCEnc_Status enc_residual_block(AVCEncObject *encvid, AVCResidualType type, int bindx, AVCMacrobl…
/external/opencore/codecs_v2/video/avc_h264/dec/src/
Dslice.cpp623 int bindx = 0; in DecodeIntra4x4Mode() local
632 BitstreamRead1Bit(stream, &(prev_intra4x4_pred_mode_flag[bindx])); in DecodeIntra4x4Mode()
634 if (!prev_intra4x4_pred_mode_flag[bindx]) in DecodeIntra4x4Mode()
636 BitstreamReadBits(stream, 3, (uint*)&(rem_intra4x4_pred_mode[bindx])); in DecodeIntra4x4Mode()
692 if (prev_intra4x4_pred_mode_flag[bindx]) in DecodeIntra4x4Mode()
698 if (rem_intra4x4_pred_mode[bindx] < predIntra4x4PredMode) in DecodeIntra4x4Mode()
700 … currMB->i4Mode[(block_y<<2)+block_x] = (AVCIntra4x4PredMode)rem_intra4x4_pred_mode[bindx]; in DecodeIntra4x4Mode()
704 … currMB->i4Mode[(block_y<<2)+block_x] = (AVCIntra4x4PredMode)(rem_intra4x4_pred_mode[bindx] + 1); in DecodeIntra4x4Mode()
707 bindx++; in DecodeIntra4x4Mode()