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

  /hardware/intel/common/libmix/videoencoder/
PVSoftMPEG4Encoder.cpp 129 mComParams.profile = VAProfileH264Baseline;
130 mComParams.level = 41;
131 mComParams.rawFormat = RAW_FORMAT_NV12;
132 mComParams.frameRate.frameRateNum = 30;
133 mComParams.frameRate.frameRateDenom = 1;
134 mComParams.resolution.width = 0;
135 mComParams.resolution.height = 0;
136 mComParams.intraPeriod = 30;
137 mComParams.rcMode = RATE_CONTROL_NONE;
138 mComParams.rcParams.initQP = 15
    [all...]
VideoEncoderH263.cpp 24 mComParams.profile = (VAProfile)PROFILE_H263BASELINE;
53 uint32_t frameRateNum = mComParams.frameRate.frameRateNum;
54 uint32_t frameRateDenom = mComParams.frameRate.frameRateDenom;
58 h263SequenceParam.bits_per_second= mComParams.rcParams.bitRate;
61 h263SequenceParam.initial_qp = mComParams.rcParams.initQP;
62 h263SequenceParam.min_qp = mComParams.rcParams.minQP;
63 h263SequenceParam.intra_period = mComParams.intraPeriod;
106 h263PictureParams.picture_width = mComParams.resolution.width;
107 h263PictureParams.picture_height = mComParams.resolution.height;
142 sliceHeight = mComParams.resolution.height
    [all...]
VideoEncoderBase.cpp 125 if (mComParams.rawFormat != RAW_FORMAT_NV12)
132 if (mComParams.resolution.width > 2048 || mComParams.resolution.height > 2048){
134 mComParams.resolution.width, mComParams.resolution.height);
137 queryAutoReferenceConfig(mComParams.profile);
148 vaStatus = vaGetConfigAttributes(mVADisplay, mComParams.profile,
160 vaAttrib[vaAttribNumber].value = mComParams.rcMode;
186 vaAttrib[vaAttribNumber].value = mComParams.numberOfLayer;
191 LOG_V( "profile = %d\n", mComParams.profile)
    [all...]
VideoEncoderMP4.cpp 27 mComParams.profile = (VAProfile)PROFILE_MPEG4SIMPLE;
131 uint32_t frameRateNum = mComParams.frameRate.frameRateNum;
132 uint32_t frameRateDenom = mComParams.frameRate.frameRateDenom;
137 mp4SequenceParams.video_object_layer_width= mComParams.resolution.width;
138 mp4SequenceParams.video_object_layer_height= mComParams.resolution.height;
142 mp4SequenceParams.bits_per_second= mComParams.rcParams.bitRate;
145 mp4SequenceParams.initial_qp = mComParams.rcParams.initQP;
146 mp4SequenceParams.min_qp = mComParams.rcParams.minQP;
147 mp4SequenceParams.intra_period = mComParams.intraPeriod;
194 mpeg4_pic_param.picture_width = mComParams.resolution.width
    [all...]
VideoEncoderVP8.cpp 55 mComParams.profile = VAProfileVP8Version0_3;
69 if (mComParams.rcMode == VA_RC_VCM) {
85 vp8SeqParam.frame_width = mComParams.resolution.width;
86 vp8SeqParam.frame_height = mComParams.resolution.height;
91 vp8SeqParam.bits_per_second = mComParams.rcParams.bitRate;
165 misc_rate_ctrl->bits_per_second = mComParams.rcParams.bitRate;
193 uint32_t frameRateNum = mComParams.frameRate.frameRateNum;
194 uint32_t frameRateDenom = mComParams.frameRate.frameRateDenom;
257 unsigned int frameRateNum = mComParams.frameRate.frameRateNum;
258 unsigned int frameRateDenom = mComParams.frameRate.frameRateDenom
    [all...]
VideoEncoderAVC.cpp 28 mComParams.profile = VAProfileH264High;
29 mComParams.level = 42;
31 mComParams.profile = VAProfileH264Main;
32 mComParams.level = 41;
68 if (mComParams.rcMode == VA_RC_VCM) {
70 // mVideoParamsAVC.sliceNum.iSliceNum = (mComParams.resolution.height + 15) / 16;
94 if((mComParams.intraPeriod >1)&&(mComParams.intraPeriod % encParamsAVC->ipPeriod !=0))
98 if(mComParams.profile == VAProfileH264Baseline){
143 mComParams.intraPeriod = configAVCIntraPeriod->intraPeriod
    [all...]
PVSoftMPEG4Encoder.h 52 VideoParamsCommon mComParams;
VideoEncoderBase.h 118 VideoParamsCommon mComParams;

Completed in 96 milliseconds