Searched refs:ncoeffs (Results 1 – 2 of 2) sorted by relevance
/external/opencore/codecs_v2/video/m4v_h263/dec/src/ |
D | combined_decode.cpp | 543 int ncoeffs[6] = {0, 0, 0, 0, 0, 0}; local 621 …ncoeffs[comp] = VlcDequantH263IntraBlock_SH(video, comp, mblock->bitmapcol[comp], &mblock->bitmapr… 633 ncoeffs[comp] = VlcDequantH263IntraBlock(video, comp, 637 if (VLC_ERROR_DETECTED(ncoeffs[comp])) 643 ncoeffs[comp] = 1; 647 no_coeff[comp] = ncoeffs[comp]; 675 …ncoeffs[comp] = VlcDequantH263InterBlock(video, comp, mblock->bitmapcol[comp], &mblock->bitmaprow[… 676 if (VLC_ERROR_DETECTED(ncoeffs[comp])) return PV_FAIL; 678 …(comp&1), mblock->pred_block + (comp&2)*64 + 8*(comp&1), mblock->block[comp], width, ncoeffs[comp], 684 *pp_mod[comp] = (uint8)((ncoeffs[comp] > 3) ? 4 : 0); [all …]
|
D | datapart_decode.cpp | 633 int ncoeffs[6], *no_coeff = mblock->no_coeff; in GetMBData_DataPart() local 685 ncoeffs[comp] = VlcDequantH263IntraBlock(video, comp, in GetMBData_DataPart() 688 if (VLC_ERROR_DETECTED(ncoeffs[comp])) /* */ in GetMBData_DataPart() 694 ncoeffs[comp] = 1; in GetMBData_DataPart() 698 no_coeff[comp] = ncoeffs[comp]; in GetMBData_DataPart() 726 ncoeffs[comp] = VlcDequantH263InterBlock(video, comp, in GetMBData_DataPart() 728 if (VLC_ERROR_DETECTED(ncoeffs[comp])) in GetMBData_DataPart() 732 …(comp&1), mblock->pred_block + (comp&2)*64 + 8*(comp&1), mblock->block[comp], width, ncoeffs[comp], in GetMBData_DataPart() 738 ncoeffs[comp] = 0; in GetMBData_DataPart() 744 *pp_mod[comp] = (uint8)((ncoeffs[comp] > 3) ? 4 : 0); in GetMBData_DataPart() [all …]
|