HomeSort by relevance Sort by last modified time
    Searched refs:ncoeffs (Results 1 - 3 of 3) sorted by null

  /frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/
combined_decode.cpp 542 int ncoeffs[6] = {0, 0, 0, 0, 0, 0}; local
620 ncoeffs[comp] = VlcDequantH263IntraBlock_SH(video, comp, mblock->bitmapcol[comp], &mblock->bitmaprow[comp]);
632 ncoeffs[comp] = VlcDequantH263IntraBlock(video, comp,
636 if (VLC_ERROR_DETECTED(ncoeffs[comp]))
642 ncoeffs[comp] = 1;
646 no_coeff[comp] = ncoeffs[comp];
674 ncoeffs[comp] = VlcDequantH263InterBlock(video, comp, mblock->bitmapcol[comp], &mblock->bitmaprow[comp]);
675 if (VLC_ERROR_DETECTED(ncoeffs[comp])) return PV_FAIL;
677 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],
683 *pp_mod[comp] = (uint8)((ncoeffs[comp] > 3) ? 4 : 0)
    [all...]
datapart_decode.cpp 632 int ncoeffs[6], *no_coeff = mblock->no_coeff; local
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)
    [all...]
  /external/arm-optimized-routines/auxiliary/
remez.jl 105 # ncoeffs Array of BigFloats giving the coefficients of the numerator.
112 function ratfn_eval(ncoeffs::Array{BigFloat}, dcoeffs::Array{BigFloat},
114 return poly_eval(ncoeffs, x) / poly_eval(dcoeffs, x)
149 # ncoeffs Array of BigFloats giving the coefficients of the numerator.
155 function ratfn_to_string(ncoeffs::Array{BigFloat}, dcoeffs::Array{BigFloat})
158 return poly_to_string(ncoeffs)
160 return string("(", poly_to_string(ncoeffs), ")/(",
406 ncoeffs = all_coeffs[1:n+1]
408 return (ncoeffs, dcoeffs)
660 ncoeffs = outvector[1:n+1
    [all...]

Completed in 501 milliseconds