HomeSort by relevance Sort by last modified time
    Searched defs:intra (Results 1 - 6 of 6) sorted by null

  /frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
fastcodemb.cpp 59 Int intra = (Mode == MODE_INTRA || Mode == MODE_INTRA_Q); local
97 if (intra)
166 if (intra)
185 if (intra)
194 if (sad < DctTh1 && !(shortHeader && intra)) /* all-zero */
195 { /* For shortHeader intra block, DC value cannot be zero */
236 BlockIDCTMotionComp(dataBlock, bitmapcol, bitmaprow[k], dctMode, rec, pred, (lx << 1) | intra);
288 Int intra = (Mode == MODE_INTRA || Mode == MODE_INTRA_Q); local
322 if (intra)
393 if (intra)
    [all...]
fastidct.cpp 27 two sets of row IDCTs one for INTRA
1868 Int intra = (lx_intra & 1); local
    [all...]
vlc_encode.cpp 146 Int PutCBPY(Int cbpy, Char intra, BitstreamEncVideo *bitstream);
168 void RunLevel(VideoEncData *video, Int intra, Int intraDC_decision, Int ncoefblck[]);
269 PutCBPY(Int cbpy, Char intra, BitstreamEncVideo *bitstream)
274 if ((intra == 0))
959 (*BlockCodeCoeff)(&(RLB[i]), bs3, 1 - intraDC_decision, ncoefblck[i], Mode);/* Code Intra AC*/
984 Int intra, intraDC_decision, DC; local
991 intra = (Mode == MODE_INTRA || Mode == MODE_INTRA_Q);
995 if (intra)
1008 RunLevel(video, intra, intraDC_decision, ncoefblck);
1026 if (CBP == 0 && intra == 0) /* Determine if Skipped MB *
1258 Int intra, intraDC_decision; local
1438 Int intra = (Mode == MODE_INTRA || Mode == MODE_INTRA_Q); local
1580 Int intra = (Mode == MODE_INTRA || Mode == MODE_INTRA_Q); local
    [all...]
  /frameworks/av/media/libstagefright/codecs/avc/enc/src/
motion_est.cpp 30 #define PREF_INTRA 3024//512 /* bias for INTRA coding */
193 bool intra = true; local
218 intra = false; // no possibility of intra, just use inter
224 *min_cost = (*min_cost + (int)(SBE * 8)) >> 1; // possibility of intra, averaging the cost
232 return intra;
303 /* Random INTRA update */
336 NumIntraSearch = 0; // to be intra searched in the encoding loop.
380 /* make a decision whether it should be tested for intra or not */
393 else // boundary MBs, always do intra searc
    [all...]
intra_est.cpp 21 #define TH_Intra 0 /* threshold biasing toward INTER mode instead of intra mode */
44 bool intra = true; local
100 intra = false;
104 return intra;
123 bool intra = true; local
130 /* now perform intra prediction search */
131 /* need to add the check for encvid->intraSearch[video->mbNum] to skip intra
135 /* Decide whether intra search is necessary or not */
138 intra = IntraDecisionABE(encvid, min_cost, curL, picPitch);
141 if (intra == true || video->slice_type == AVC_I_SLICE
    [all...]
  /hardware/qcom/media/mm-video/vidc/venc/test/
venc_test.cpp 637 h263.nPFrames = m_sProfile.nFramerate * 2 - 1; // intra period
747 QOMX_VIDEO_INTRAPERIODTYPE intra; local
749 intra.nPortIndex = (OMX_U32) PORT_INDEX_OUT; // output
752 (OMX_PTR) &intra);
756 intra.nPFrames = (OMX_U32) (2 * m_sProfile.nFramerate - 1); //setting I
759 intra.nIDRPeriod = 1; //every I frame is an IDR
760 intra.nPortIndex = (OMX_U32) PORT_INDEX_OUT;
763 (OMX_PTR) &intra);
    [all...]

Completed in 260 milliseconds