Lines Matching refs:mComParams
28 mComParams.profile = VAProfileH264High; in VideoEncoderAVC()
29 mComParams.level = 42; in VideoEncoderAVC()
31 mComParams.profile = VAProfileH264Main; in VideoEncoderAVC()
32 mComParams.level = 41; in VideoEncoderAVC()
68 if (mComParams.rcMode == VA_RC_VCM) { in start()
94 if((mComParams.intraPeriod >1)&&(mComParams.intraPeriod % encParamsAVC->ipPeriod !=0)) in derivedSetParams()
98 if(mComParams.profile == VAProfileH264Baseline){ in derivedSetParams()
143 mComParams.intraPeriod = configAVCIntraPeriod->intraPeriod; in derivedSetConfig()
204 configAVCIntraPeriod->intraPeriod = mComParams.intraPeriod; in derivedGetConfig()
245 uint32_t idrPeroid = mComParams.intraPeriod * mVideoParamsAVC.idrInterval; in updateFrameInfo()
248 uint32_t intraPeriod = mComParams.intraPeriod; in updateFrameInfo()
256 if (mComParams.intraPeriod == 0) in updateFrameInfo()
761 …if (mComParams.rcParams.enableIntraFrameQPControl && (task->type == FTYPE_IDR || task->type == FTY… in sendEncodeCommand()
770 (mComParams.refreshType == VIDEO_ENC_AIR || in sendEncodeCommand()
771 mComParams.refreshType == VIDEO_ENC_BOTH)) { in sendEncodeCommand()
819 if (mComParams.rcMode != RATE_CONTROL_VCM) { in renderMaxSliceSize()
875 misc_cir_param->cir_num_mbs = mComParams.cirParams.cir_num_mbs; in renderCIR()
908 airParams->air_num_mbs = mComParams.airParams.airMBs; in renderAIR()
909 airParams->air_threshold= mComParams.airParams.airThreshold; in renderAIR()
910 airParams->air_auto = mComParams.airParams.airAuto; in renderAIR()
955 uint32_t frameRateNum = mComParams.frameRate.frameRateNum; in renderSequenceParams()
956 uint32_t frameRateDenom = mComParams.frameRate.frameRateDenom; in renderSequenceParams()
983 avcSeqParams.intra_period = mComParams.intraPeriod; in renderSequenceParams()
986 avcSeqParams.picture_width_in_mbs = (mComParams.resolution.width + 15) / 16; in renderSequenceParams()
987 avcSeqParams.picture_height_in_mbs = (mComParams.resolution.height + 15) / 16; in renderSequenceParams()
991 avcSeqParams.bits_per_second = mComParams.rcParams.bitRate; in renderSequenceParams()
994 rcMiscParam->initial_qp = mComParams.rcParams.initQP; in renderSequenceParams()
995 rcMiscParam->min_qp = mComParams.rcParams.minQP; in renderSequenceParams()
996 rcMiscParam->max_qp = mComParams.rcParams.maxQP; in renderSequenceParams()
997 if (mComParams.rcParams.enableIntraFrameQPControl) { in renderSequenceParams()
998 rcMiscParam->min_qp = mComParams.rcParams.I_minQP; in renderSequenceParams()
999 rcMiscParam->max_qp = mComParams.rcParams.I_maxQP; in renderSequenceParams()
1001 rcMiscParam->window_size = mComParams.rcParams.windowSize; in renderSequenceParams()
1005 avcSeqParams.intra_period = mComParams.intraPeriod; in renderSequenceParams()
1023 if (mComParams.resolution.width & 0xf) { in renderSequenceParams()
1025 uint32_t AWidth = (mComParams.resolution.width + 0xf) & (~0xf); in renderSequenceParams()
1026 avcSeqParams.frame_crop_right_offset = ( AWidth - mComParams.resolution.width ) / 2; in renderSequenceParams()
1029 if (mComParams.resolution.height & 0xf) { in renderSequenceParams()
1031 uint32_t AHeight = (mComParams.resolution.height + 0xf) & (~0xf); in renderSequenceParams()
1032 avcSeqParams.frame_crop_bottom_offset = ( AHeight - mComParams.resolution.height ) / 2; in renderSequenceParams()
1106 length_in_bits = build_packed_seq_buffer(&packed_seq_buffer, mComParams.profile, avcSeqParams); in renderPackedSequenceParams()
1273 maxSliceNum = (mComParams.resolution.height + 15) / 16; in renderSliceParams()
1324 …currentSlice->macroblock_address = startRowInMB * ((mComParams.resolution.width + 0xf) & ~0xf) / 1… in renderSliceParams()
1326 …currentSlice->num_macroblocks = actualSliceHeightInMB * ((mComParams.resolution.width + 0xf) & ~0x… in renderSliceParams()
1333 currentSlice->disable_deblocking_filter_idc = mComParams.disableDeblocking; in renderSliceParams()