Searched defs:intra (Results 1 - 6 of 6) sorted by relevance

/frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
H A Dfastcodemb.cpp59 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...]
H A Dfastidct.cpp1868 Int intra = (lx_intra & 1); local
1873 if (intra)
1919 if (intra)
2008 if (intra)
2015 if (intra)
H A Dvlc_encode.cpp146 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) argument
274 if ((intra == 0))
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 */
1073 if (intra)
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
1785 RunLevel(VideoEncData *video, Int intra, Int intraDC_decision, Int ncoefblck[]) argument
[all...]
/frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/
H A Dvlc_decode.cpp590 int PV_VlcDecCBPY(BitstreamDecVideo *stream, int intra) argument
613 if (intra == 0) CBPY = 15 - CBPY;
1201 PV_STATUS VlcDecTCOEFShortHeader(BitstreamDecVideo *stream, Tcoef *pTcoef/*, int intra*/)
1208 /*intra = 0;*/
1261 PV_STATUS VlcDecTCOEFShortHeader_AnnexI(BitstreamDecVideo *stream, Tcoef *pTcoef/*, int intra*/)
1268 /*intra = 0;*/
1316 PV_STATUS VlcDecTCOEFShortHeader_AnnexT(BitstreamDecVideo *stream, Tcoef *pTcoef/*, int intra*/)
1323 /*intra = 0;*/
1389 PV_STATUS VlcDecTCOEFShortHeader_AnnexIT(BitstreamDecVideo *stream, Tcoef *pTcoef/*, int intra*/)
1396 /*intra
[all...]
/frameworks/av/media/libstagefright/codecs/avc/enc/src/
H A Dintra_est.cpp21 #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
[all...]
H A Dmotion_est.cpp193 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;
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 search
428 /* since we cannot do intra/inter decision here, the SCD has to be
435 only show potential intra MB
[all...]

Completed in 92 milliseconds