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

  /frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/
datapart_decode.cpp 146 int MBtype, MCBPC, CBPY;
243 CBPY = PV_VlcDecCBPY(stream, MBtype & INTRA_MASK); /* MODE_INTRA || MODE_INTRA_Q */
244 if (CBPY < 0)
254 video->headerInfo.CBP[mbnum] |= (uint8)(CBPY << 2);
311 int MBtype, CBPY;
430 CBPY = PV_VlcDecCBPY(stream, intra_MB);
431 if (CBPY < 0)
441 video->headerInfo.CBP[mbnum] |= (uint8)(CBPY << 2);
vlc_decode.cpp 592 int CBPY = 0;
605 CBPY = 15;
610 CBPY = PV_CBPYtab[code].val;
613 if (intra == 0) CBPY = 15 - CBPY;
614 CBPY = CBPY & 15;
615 return CBPY;
    [all...]
combined_decode.cpp 337 /* Purpose : Decode MB header, not_coded, mcbpc, ac_pred_flag, cbpy, dquant. */
356 int CBPY, CBPC;
455 CBPY = PV_VlcDecCBPY(stream, MBtype & INTRA_MASK); /* INTRA || INTRA_Q */
456 if (CBPY < 0)
462 video->headerInfo.CBP[mbnum] = (uint8)(CBPY << 2 | (CBPC & 3));

Completed in 450 milliseconds