[FFmpeg-devel] [PATCH] libavcodec/qsvenc: fixy typo for min/max qp reset

Xiang, Haihao haihao.xiang at intel.com
Mon Sep 26 11:35:38 EEST 2022


On Mon, 2022-09-26 at 01:51 +0000, Chen, Wenbin wrote:
> > Fixes: 005c7a4 ("libavcodec/qsvenc: Add max/min qp reset support in
> > qsvenc")
> > CC: Wenbin Chen <wenbin.chen at intel.com>
> > Signed-off-by: Dmitry Rogozhkin <dmitry.v.rogozhkin at intel.com>
> > ---
> >  libavcodec/qsvenc.c | 4 ++--
> >  1 file changed, 2 insertions(+), 2 deletions(-)
> > 
> > diff --git a/libavcodec/qsvenc.c b/libavcodec/qsvenc.c
> > index 84c6e29..8bd9272 100644
> > --- a/libavcodec/qsvenc.c
> > +++ b/libavcodec/qsvenc.c
> > @@ -1760,8 +1760,8 @@ static int update_min_max_qp(AVCodecContext
> > *avctx, QSVEncContext *q)
> >      if (avctx->codec_id != AV_CODEC_ID_H264)
> >          return 0;
> > 
> > -    UPDATE_PARAM(q->old_qmax, avctx->qmin);
> > -    UPDATE_PARAM(q->old_qmax, avctx->qmin);
> > +    UPDATE_PARAM(q->old_qmin, avctx->qmin);
> > +    UPDATE_PARAM(q->old_qmax, avctx->qmax);
> >      UPDATE_PARAM(q->old_min_qp_i, q->min_qp_i);
> >      UPDATE_PARAM(q->old_max_qp_i, q->max_qp_i);
> >      UPDATE_PARAM(q->old_min_qp_p, q->min_qp_p);
> > --
> > 1.8.3.1
> 
> Thanks for your correction.
> LGTM

Applied, thx

-Haihao



More information about the ffmpeg-devel mailing list