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

  /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...]
PVSoftMPEG4Encoder.cpp 136 mComParams.intraPeriod = 30;
209 mEncParams->intraPeriod = -1;
211 mEncParams->intraPeriod = 1; // All I frames
213 mEncParams->intraPeriod =
VideoEncoderDef.h 371 int32_t intraPeriod;
400 this->intraPeriod = other.intraPeriod;
583 uint32_t intraPeriod;
VideoEncoderH263.cpp 63 h263SequenceParam.intra_period = mComParams.intraPeriod;
VideoEncoderMP4.cpp 147 mp4SequenceParams.intra_period = mComParams.intraPeriod;
VideoEncoderBase.cpp 933 mComParams.intraPeriod = 30;
    [all...]
  /hardware/intel/common/omx-components/videocodec/
OMXVideoEncoderAVC.cpp 212 mEncoderParams->intraPeriod = mParamAvc.nPFrames + mParamAvc.nBFrames;
214 mEncoderParams->intraPeriod = mParamAvc.nPFrames + 1;
237 if (mEncoderParams->intraPeriod == 0) {
243 mAVCParams->ipPeriod = mEncoderParams->intraPeriod / mParamAvc.nPFrames;
255 LOGV("intraPeriod = %d\n ", mEncoderParams->intraPeriod);
291 uint32_t IntraPeriod = mEncoderParams->intraPeriod;
296 if (idrPeriod == 0 || IntraPeriod == 0) {
298 if (IntraPeriod == 0
    [all...]
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/
SoftMPEG4Encoder.cpp 154 mEncParams->intraPeriod = -1;
156 mEncParams->intraPeriod = 1; // All I frames
158 mEncParams->intraPeriod =
  /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
  /frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
mp4enc_api.cpp 348 encParams->IntraPeriod = encOption->intraPeriod; /* Intra update period update default*/
    [all...]

Completed in 89 milliseconds