Home
last modified time | relevance | path

Searched refs:nBframes (Results 1 – 4 of 4) sorted by relevance

/hardware/qcom/sm7250/media/mm-video-v4l2/vidc/venc/inc/
Dvideo_encoder_device_v4l2.h427 bool set_nB_frames(unsigned long nBframes);
/hardware/qcom/sm8150/media/mm-video-v4l2/vidc/venc/src/
Dvideo_encoder_device_v4l2.cpp6108 int ratio, sub_gop_size, gop_size, nPframes, nBframes, nLayers; in venc_calibrate_gop() local
6111 nBframes = intra_period.num_bframes; in venc_calibrate_gop()
6119 if (nBframes && !nPframes) { in venc_calibrate_gop()
6130 gop_size = MAX(sub_gop_size, ROUND(nPframes + (nPframes * nBframes), sub_gop_size)); in venc_calibrate_gop()
6132 if (nBframes) { /*Hier-B case*/ in venc_calibrate_gop()
6147 nBframes = sub_gop_size - 1; in venc_calibrate_gop()
6169 nPframes,nBframes); in venc_calibrate_gop()
6173 if ((unsigned int)nBframes > VENC_INFINITE_GOP) { in venc_calibrate_gop()
6174 nBframes = VENC_INFINITE_GOP; in venc_calibrate_gop()
6179 intra_period.num_pframes, intra_period.num_bframes, nPframes, nBframes); in venc_calibrate_gop()
[all …]
/hardware/qcom/media/msm8996/mm-video-v4l2/vidc/venc/src/
Dvideo_encoder_device_v4l2.cpp5444 int ratio, sub_gop_size, gop_size, nPframes, nBframes, nLayers; in venc_calibrate_gop() local
5447 nBframes = intra_period.num_bframes; in venc_calibrate_gop()
5464 gop_size = MAX(sub_gop_size, ROUND(nPframes + nBframes, sub_gop_size)); in venc_calibrate_gop()
5466 if (nBframes) { /*Hier-B case*/ in venc_calibrate_gop()
5481 nBframes = gop_size - nPframes; in venc_calibrate_gop()
5499 if (nBframes) { in venc_calibrate_gop()
5508 ratio = MAX(1, MIN((nBframes + (nPframes >> 1))/nPframes, 3)); in venc_calibrate_gop()
5509 nBframes = ratio * nPframes; in venc_calibrate_gop()
5513 intra_period.num_pframes, intra_period.num_bframes, nPframes, nBframes); in venc_calibrate_gop()
5515 intra_period.num_bframes = nBframes; in venc_calibrate_gop()
/hardware/qcom/sm7250/media/mm-video-v4l2/vidc/venc/src/
Dvideo_encoder_device_v4l2.cpp3470 bool venc_dev::set_nB_frames(unsigned long nBframes) in set_nB_frames() argument
3475 control.value = (nBframes > VENC_INFINITE_GOP) ? VENC_INFINITE_GOP : nBframes; in set_nB_frames()