Searched refs:ncoeffs (Results 1 – 2 of 2) sorted by relevance
/frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/ |
D | combined_decode.cpp | 542 int ncoeffs[6] = {0, 0, 0, 0, 0, 0}; local 602 …ncoeffs[comp] = VlcDequantH263IntraBlock_SH(video, comp, mblock->bitmapcol[comp], &mblock->bitmapr… 614 ncoeffs[comp] = VlcDequantH263IntraBlock(video, comp, 618 if (VLC_ERROR_DETECTED(ncoeffs[comp])) 624 ncoeffs[comp] = 1; 628 no_coeff[comp] = ncoeffs[comp]; 652 …ncoeffs[comp] = VlcDequantH263InterBlock(video, comp, mblock->bitmapcol[comp], &mblock->bitmaprow[… 653 if (VLC_ERROR_DETECTED(ncoeffs[comp])) return PV_FAIL; 655 …(comp&1), mblock->pred_block + (comp&2)*64 + 8*(comp&1), mblock->block[comp], width, ncoeffs[comp], 668 … ncoeffs[4] = VlcDequantH263InterBlock(video, 4, mblock->bitmapcol[4], &mblock->bitmaprow[4]); [all …]
|
D | datapart_decode.cpp | 632 int ncoeffs[6], *no_coeff = mblock->no_coeff; in GetMBData_DataPart() local 664 ncoeffs[comp] = VlcDequantH263IntraBlock(video, comp, in GetMBData_DataPart() 667 if (VLC_ERROR_DETECTED(ncoeffs[comp])) /* */ in GetMBData_DataPart() 673 ncoeffs[comp] = 1; in GetMBData_DataPart() 677 no_coeff[comp] = ncoeffs[comp]; in GetMBData_DataPart() 701 ncoeffs[comp] = VlcDequantH263InterBlock(video, comp, in GetMBData_DataPart() 703 if (VLC_ERROR_DETECTED(ncoeffs[comp])) in GetMBData_DataPart() 707 …(comp&1), mblock->pred_block + (comp&2)*64 + 8*(comp&1), mblock->block[comp], width, ncoeffs[comp], in GetMBData_DataPart() 713 ncoeffs[comp] = 0; in GetMBData_DataPart() 722 ncoeffs[4] = VlcDequantH263InterBlock(video, 4, in GetMBData_DataPart() [all …]
|