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

  /external/mesa3d/src/gallium/auxiliary/vl/
vl_vertex_buffers.h 86 uint8_t intra; member in struct:vl_ycbcr_block
vl_mpeg12_bitstream.c 717 bool intra = mb->macroblock_type & PIPE_MPEG12_MB_TYPE_INTRA; local
718 const struct dct_coeff *table = intra ? bs->intra_dct_tbl : tbl_B14_AC;
724 mb->coded_block_pattern = cbp = intra ? 0x3F : vl_vlc_get_vlclbf(&bs->vlc, tbl_B9, 9);
748 if (intra) {
vl_mpeg12_decoder.c 267 /* no motion vector, but also not intra mb ->
332 unsigned intra; local
341 intra = mb->macroblock_type & PIPE_MPEG12_MB_TYPE_INTRA ? 1 : 0;
350 stream->intra = intra;
371 stream->intra = intra;
    [all...]
  /external/libopus/celt/
quant_bands.c 74 (inter/intra), and band number.
86 /*Intra*/
101 /*Intra*/
116 /*Intra*/
131 /*Intra*/
160 int C, int LM, int intra, opus_val16 max_decay, int lfe)
169 ec_enc_bit_logp(enc, intra, 3);
170 if (intra)
266 int intra; local
277 intra = force_intra || (!two_pass && *delayedIntra>2*C*(end-start) && nbAvailableBytes > (end-start)*C)
    [all...]
  /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...]
  /external/mesa3d/src/gallium/drivers/nouveau/
nouveau_video.c 163 bool intra = mb->macroblock_type & PIPE_MPEG12_MB_TYPE_INTRA; local
173 if (intra)
185 if (!intra)
  /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-legacy/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...]
  /hardware/qcom/media/mm-video-v4l2/vidc/venc/test/
venc_test.cpp 672 h263.nPFrames = m_sProfile.nFramerate * 2 - 1; // intra period
779 QOMX_VIDEO_INTRAPERIODTYPE intra; local
781 intra.nPortIndex = (OMX_U32) PORT_INDEX_OUT; // output
784 (OMX_PTR) &intra);
787 intra.nPFrames = (OMX_U32) (2 * m_sProfile.nFramerate - 1); //setting I
790 intra.nIDRPeriod = 1; //every I frame is an IDR
791 intra.nPortIndex = (OMX_U32) PORT_INDEX_OUT;
794 (OMX_PTR) &intra);
    [all...]

Completed in 1450 milliseconds