summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKrunal Patel <krunalkumarmukeshkumar.patel@amd.corp-partner.google.com>2020-11-20 01:05:46 +0530
committerDylan Baker <dylan.c.baker@intel.com>2020-11-25 10:00:00 -0800
commit10c2cddf5601c53b0b8970704c27c539d1d4fb97 (patch)
tree587a684017ecad5e6ce9c05aba2f077755aa0c6b
parentd6a3111a99e4e2ff62100b0adc96fa4ab76c751d (diff)
downloadmesa-10c2cddf5601c53b0b8970704c27c539d1d4fb97.tar.gz
radeon/vce: Bitrate not updated when changing framerate
Issue: Encoding parameters not updated after changing FrameRate Root Cause: In rvce_begin_frame, need_rate_control was enabled if the target_bitrate, quant_i_frames, quant_p_frames, quant_b_frames or rate_ctrl_method changes. Due to this the rate_control() was not updating the encoder parameters with new framerate, peak_bits_per_picture_integer and avg_target_bits_per_picture Fix: Added the condition where we will check if there is a change in other parameters and enable need_rate_control. Eventually updating the encoder parameters with new framerate and bitrate. Signed-off-by: Krunal Patel <krunalkumarmukeshkumar.patel@amd.corp-partner.google.com> Reviewed-by: Leo Liu <leo.liu@amd.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/7696> (cherry picked from commit 35613c752f5826dcc5bbfbfb8e6ab0ab3127b7d3)
-rw-r--r--src/gallium/drivers/radeon/radeon_vce.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/gallium/drivers/radeon/radeon_vce.c b/src/gallium/drivers/radeon/radeon_vce.c
index 416240b6d1e..c972bb55931 100644
--- a/src/gallium/drivers/radeon/radeon_vce.c
+++ b/src/gallium/drivers/radeon/radeon_vce.c
@@ -265,7 +265,9 @@ static void rvce_begin_frame(struct pipe_video_codec *encoder, struct pipe_video
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.rate_ctrl.target_bitrate != pic->rate_ctrl.target_bitrate;
+ enc->pic.rate_ctrl.target_bitrate != pic->rate_ctrl.target_bitrate ||
+ enc->pic.rate_ctrl.frame_rate_num != pic->rate_ctrl.frame_rate_num ||
+ enc->pic.rate_ctrl.frame_rate_den != pic->rate_ctrl.frame_rate_den;
enc->pic = *pic;
enc->si_get_pic_param(enc, pic);