Home
last modified time | relevance | path

Searched refs:nPframes (Results 1 – 6 of 6) sorted by relevance

/hardware/qcom/media/msm8974/mm-video-v4l2/vidc/venc/src/
Dvideo_encoder_device_v4l2.cpp4243 int ratio, sub_gop_size, gop_size, nPframes, nBframes, nLayers; in venc_calibrate_gop() local
4245 nPframes = intra_period.num_pframes; in venc_calibrate_gop()
4249 if (!nPframes) { in venc_calibrate_gop()
4260 gop_size = MAX(sub_gop_size, ROUND(nPframes + nBframes, sub_gop_size)); in venc_calibrate_gop()
4276 nPframes = num_sub_gops_in_a_gop; in venc_calibrate_gop()
4277 nBframes = gop_size - nPframes; in venc_calibrate_gop()
4292 nPframes = gop_size - 1; in venc_calibrate_gop()
4304 ratio = MAX(1, MIN((nBframes + (nPframes >> 1))/nPframes, 3)); in venc_calibrate_gop()
4305 nBframes = ratio * nPframes; in venc_calibrate_gop()
4309 intra_period.num_pframes, intra_period.num_bframes, nPframes, nBframes); in venc_calibrate_gop()
[all …]
/hardware/qcom/sm7250/media/mm-video-v4l2/vidc/venc/inc/
Dvideo_encoder_device_v4l2.h429 bool set_nP_frames(unsigned long nPframes);
/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
5446 nPframes = intra_period.num_pframes; in venc_calibrate_gop()
5453 if (!nPframes && nLayers) { in venc_calibrate_gop()
5464 gop_size = MAX(sub_gop_size, ROUND(nPframes + nBframes, sub_gop_size)); in venc_calibrate_gop()
5480 nPframes = num_sub_gops_in_a_gop; in venc_calibrate_gop()
5481 nBframes = gop_size - nPframes; in venc_calibrate_gop()
5496 nPframes = gop_size - 1; 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()
[all …]
/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
6110 nPframes = intra_period.num_pframes; in venc_calibrate_gop()
6114 if (!nPframes && nLayers) { 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()
6146 nPframes = num_sub_gops_in_a_gop; in venc_calibrate_gop()
6162 nPframes = gop_size - 1; in venc_calibrate_gop()
6169 nPframes,nBframes); in venc_calibrate_gop()
6170 if ((unsigned int)nPframes > VENC_INFINITE_GOP) { in venc_calibrate_gop()
6171 nPframes = VENC_INFINITE_GOP; in venc_calibrate_gop()
[all …]
/hardware/qcom/media/msm8998/mm-video-v4l2/vidc/venc/src/
Dvideo_encoder_device_v4l2.cpp6041 int ratio, sub_gop_size, gop_size, nPframes, nBframes, nLayers; in venc_calibrate_gop() local
6043 nPframes = intra_period.num_pframes; in venc_calibrate_gop()
6050 if (!nPframes && nLayers) { in venc_calibrate_gop()
6061 gop_size = MAX(sub_gop_size, ROUND(nPframes + nBframes, sub_gop_size)); in venc_calibrate_gop()
6077 nPframes = num_sub_gops_in_a_gop; in venc_calibrate_gop()
6078 nBframes = gop_size - nPframes; in venc_calibrate_gop()
6093 nPframes = gop_size - 1; in venc_calibrate_gop()
6105 ratio = MAX(1, MIN((nBframes + (nPframes >> 1))/nPframes, 3)); in venc_calibrate_gop()
6106 nBframes = ratio * nPframes; in venc_calibrate_gop()
6110 intra_period.num_pframes, intra_period.num_bframes, nPframes, nBframes); in venc_calibrate_gop()
[all …]
/hardware/qcom/sm7250/media/mm-video-v4l2/vidc/venc/src/
Dvideo_encoder_device_v4l2.cpp3480 bool venc_dev::set_nP_frames(unsigned long nPframes) in set_nP_frames() argument
3485 control.value = (nPframes > VENC_INFINITE_GOP) ? VENC_INFINITE_GOP : nPframes; in set_nP_frames()