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

  /hardware/intel/common/omx-components/videocodec/
OMXVideoEncoderBase.cpp 292 if(mEncoderParams->intraPeriod == 0) {
293 OMX_U32 intraPeriod = mEncoderParams->frameRate.frameRateNum / 2;
294 mEncoderParams->intraPeriod = (intraPeriod < 15) ? 15 : intraPeriod; // Limit intra frame period to ensure video quality for low bitrate application.
304 LOGV("intraPeriod = %d\n ", mEncoderParams->intraPeriod);
    [all...]
  /frameworks/av/media/libstagefright/codecs/m4v_h263/enc/include/
mp4enc_api.h 200 * intraPeriod is the I frame interval in terms of second.
201 * intraPeriod =0 indicates I-frame encoding only;
202 * intraPeriod = -1 indicates I-frame followed by all P-frames; (default)
203 * intraPeriod = N, indicates the number of P-frames between 2 I-frames.*/
204 Int intraPeriod;
213 * the new scene resulting in better picture quality. An insertion of an I-VOP resets the intraPeriod
  /hardware/intel/common/libmix/videoencoder/
VideoEncoderAVC.cpp 94 if((mComParams.intraPeriod >1)&&(mComParams.intraPeriod % encParamsAVC->ipPeriod !=0))
138 if((configAVCIntraPeriod->intraPeriod >1)&&(configAVCIntraPeriod->intraPeriod % configAVCIntraPeriod->ipPeriod !=0))
143 mComParams.intraPeriod = configAVCIntraPeriod->intraPeriod;
204 configAVCIntraPeriod->intraPeriod = mComParams.intraPeriod;
245 uint32_t idrPeroid = mComParams.intraPeriod * mVideoParamsAVC.idrInterval;
248 uint32_t intraPeriod = mComParams.intraPeriod
    [all...]
VideoEncoderDef.h 371 int32_t intraPeriod;
400 this->intraPeriod = other.intraPeriod;
583 uint32_t intraPeriod;

Completed in 587 milliseconds