[Mesa-dev] [PATCH] radeonsi: Add support for midstream bitrate change in encoder

Leo Liu leo.liu at amd.com
Thu Dec 5 01:37:18 UTC 2019


On 2019-12-02 11:30 p.m., Satyajit Sahu wrote:
> Added support for bitrate change in between encoding.
>
> Signed-off-by: Satyajit Sahu <satyajit.sahu at amd.com>
>
> diff --git a/src/gallium/drivers/radeon/radeon_vce.c b/src/gallium/drivers/radeon/radeon_vce.c
> index 84d3c1e2fa4..7d7a2fa4eb3 100644
> --- a/src/gallium/drivers/radeon/radeon_vce.c
> +++ b/src/gallium/drivers/radeon/radeon_vce.c
> @@ -268,7 +268,8 @@ static void rvce_begin_frame(struct pipe_video_codec *encoder,
>   		enc->pic.rate_ctrl.rate_ctrl_method != pic->rate_ctrl.rate_ctrl_method ||
>   		enc->pic.quant_i_frames != pic->quant_i_frames ||
>   		enc->pic.quant_p_frames != pic->quant_p_frames ||
> -		enc->pic.quant_b_frames != pic->quant_b_frames;
> +		enc->pic.quant_b_frames != pic->quant_b_frames ||
> +		enc->pic.rate_ctrl.target_bitrate != pic->rate_ctrl.target_bitrate;
>   
>   	enc->pic = *pic;
>   	si_get_pic_param(enc, pic);
> diff --git a/src/gallium/drivers/radeon/radeon_vcn_enc.c b/src/gallium/drivers/radeon/radeon_vcn_enc.c
> index aa9182f273b..c4fb9a7bd92 100644
> --- a/src/gallium/drivers/radeon/radeon_vcn_enc.c
> +++ b/src/gallium/drivers/radeon/radeon_vcn_enc.c
> @@ -247,6 +247,17 @@ static void radeon_enc_begin_frame(struct pipe_video_codec *encoder,
>   {
>   	struct radeon_encoder *enc = (struct radeon_encoder*)encoder;
>   	struct vl_video_buffer *vid_buf = (struct vl_video_buffer *)source;
> +	bool need_rate_control = false;
> +
> +	if (u_reduce_video_profile(enc->base.profile) == PIPE_VIDEO_FORMAT_MPEG4_AVC) {
> +		struct pipe_h264_enc_picture_desc *pic = (struct pipe_h264_enc_picture_desc *)picture;
> +		need_rate_control =
> +			enc->enc_pic.rc_layer_init.target_bit_rate != pic->rate_ctrl.target_bitrate;
> +	} else if (u_reduce_video_profile(picture->profile) == PIPE_VIDEO_FORMAT_HEVC) {
> +                struct pipe_h265_enc_picture_desc *pic = (struct pipe_h265_enc_picture_desc *)picture;

Please fix your indentation here.

And then rebase with Mesa master, it seem your patch doesn't get 
compiled with Mesa master. Please resend after the fixes.

Regards,

Leo



> +		need_rate_control =
> +			enc->enc_pic.rc_layer_init.target_bit_rate != pic->rc.target_bitrate;
> +	}
>   
>   	radeon_vcn_enc_get_param(enc, picture);
>   
> @@ -266,6 +277,10 @@ static void radeon_enc_begin_frame(struct pipe_video_codec *encoder,
>   		flush(enc);
>   		si_vid_destroy_buffer(&fb);
>   	}
> +	if (need_rate_control) {
> +		enc->begin(enc, picture);
> +		flush(enc);
> +	}
>   }
>   
>   static void radeon_enc_encode_bitstream(struct pipe_video_codec *encoder,


More information about the mesa-dev mailing list