[FFmpeg-devel] [PATCH v1] avcodec/hevcpred_template: Removed unreachable code
Ronald S. Bultje
rsbultje at gmail.com
Tue Oct 3 15:45:37 EEST 2023
Hi,
On Tue, Oct 3, 2023 at 4:15 AM Dawid Kozinski/Multimedia (PLT) /SRPOL/Staff
Engineer/Samsung Electronics <d.kozinski at samsung.com> wrote:
>
>
>
> > -----Original Message-----
> > From: ffmpeg-devel <ffmpeg-devel-bounces at ffmpeg.org> On Behalf Of Ronald
> > S. Bultje
> > Sent: poniedziałek, 2 października 2023 15:49
> > To: FFmpeg development discussions and patches <ffmpeg-devel at ffmpeg.org>
> > Cc: Dawid Kozinski <d.kozinski at samsung.com>; d.frankiewic at samsung.com
> > Subject: Re: [FFmpeg-devel] [PATCH v1] avcodec/hevcpred_template: Removed
> > unreachable code
> >
> > Hi,
> >
> > On Fri, Sep 29, 2023 at 4:32 AM Dawid Kozinski <d.kozinski at samsung.com>
> > wrote:
> >
> > > Signed-off-by: Dawid Kozinski <d.kozinski at samsung.com>
> > > ---
> > > libavcodec/hevcpred_template.c | 11 ++++-------
> > > 1 file changed, 4 insertions(+), 7 deletions(-)
> > >
> > > diff --git a/libavcodec/hevcpred_template.c
> > > b/libavcodec/hevcpred_template.c index 16d1c7f35f..46bd806523 100644
> > > --- a/libavcodec/hevcpred_template.c
> > > +++ b/libavcodec/hevcpred_template.c
> > > @@ -213,13 +213,10 @@ do { \
> > > j = 0;
> > > while (j < size_max_x && !IS_INTRA(j, -1))
> > > j++;
> > > - if (j > 0)
> > > - if (cand_up_left) {
> > > - EXTEND_LEFT_CIP(top, j, j + 1);
> > > - } else {
> > > - EXTEND_LEFT_CIP(top, j, j);
> > > - top[-1] = top[0];
> > > - }
> > > + if (j > 0) {
> > > + EXTEND_LEFT_CIP(top, j, j);
> > > + top[-1] = top[0];
> > > + }
> > > left[-1] = top[-1];
> > > }
> > > left[-1] = top[-1];
> > > --
> > > 2.25.1
> > >
> >
> > LGTM.
> >
> > Can you merge yourself, or do you need me to merge for you?
>
> Thank you for review.
> If you can, merge it, please.
>
Done.
Ronald
More information about the ffmpeg-devel
mailing list