HomeSort by relevance Sort by last modified time
    Searched full:dc_coeff (Results 1 - 1 of 1) sorted by null

  /frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/
combined_decode.cpp 544 int16 DC_coeff;
598 DC_coeff = (int16) BitstreamReadBits16_INLINE(stream, 8);
600 if ((DC_coeff & 0x7f) == 0) /* 128 & 0 */
603 if (DC_coeff == 128)
612 if (DC_coeff == 255)
614 DC_coeff = 128;
616 dataBlock[0] = (int16) DC_coeff;
627 status = PV_DecodePredictedIntraDC(comp, stream, &DC_coeff);
630 dataBlock[0] = (int16) DC_coeff;

Completed in 339 milliseconds