Home | History | Annotate | Download | only in src

Lines Matching refs:ncoeffs

632     int  ncoeffs[6], *no_coeff = mblock->no_coeff;
684 ncoeffs[comp] = VlcDequantH263IntraBlock(video, comp,
687 if (VLC_ERROR_DETECTED(ncoeffs[comp])) /* */
693 ncoeffs[comp] = 1;
697 no_coeff[comp] = ncoeffs[comp];
725 ncoeffs[comp] = VlcDequantH263InterBlock(video, comp,
727 if (VLC_ERROR_DETECTED(ncoeffs[comp]))
731 BlockIDCT(c_comp + (comp&2)*(width << 2) + 8*(comp&1), mblock->pred_block + (comp&2)*64 + 8*(comp&1), mblock->block[comp], width, ncoeffs[comp],
737 ncoeffs[comp] = 0;
743 *pp_mod[comp] = (uint8)((ncoeffs[comp] > 3) ? 4 : 0);
750 ncoeffs[4] = VlcDequantH263InterBlock(video, 4,
752 if (VLC_ERROR_DETECTED(ncoeffs[4]))
755 BlockIDCT(video->currVop->uChan + (offset >> 2) + (x_pos << 2), mblock->pred_block + 256, mblock->block[4], width >> 1, ncoeffs[4],
761 ncoeffs[4] = 0;
765 *pp_mod[4] = (uint8)((ncoeffs[4] > 3) ? 4 : 0);
770 ncoeffs[5] = VlcDequantH263InterBlock(video, 5,
772 if (VLC_ERROR_DETECTED(ncoeffs[5]))
775 BlockIDCT(video->currVop->vChan + (offset >> 2) + (x_pos << 2), mblock->pred_block + 264, mblock->block[5], width >> 1, ncoeffs[5],
781 ncoeffs[5] = 0;
785 *pp_mod[5] = (uint8)((ncoeffs[5] > 3) ? 4 : 0);