Re: [FFmpeg-devel] [PATCH v1] avcodec/hevcpred_template: Removed unreachable code

2023-10-03 Thread Ronald S. Bultje
Hi,

On Tue, Oct 3, 2023 at 4:15 AM Dawid Kozinski/Multimedia (PLT) /SRPOL/Staff
Engineer/Samsung Electronics  wrote:

>
>
>
> > -Original Message-
> > From: ffmpeg-devel  On Behalf Of Ronald
> > S. Bultje
> > Sent: poniedziałek, 2 października 2023 15:49
> > To: FFmpeg development discussions and patches 
> > Cc: Dawid Kozinski ; d.frankie...@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 
> > wrote:
> >
> > > Signed-off-by: Dawid Kozinski 
> > > ---
> > >  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
___
ffmpeg-devel mailing list
ffmpeg-devel@ffmpeg.org
https://ffmpeg.org/mailman/listinfo/ffmpeg-devel

To unsubscribe, visit link above, or email
ffmpeg-devel-requ...@ffmpeg.org with subject "unsubscribe".


Re: [FFmpeg-devel] [PATCH v1] avcodec/hevcpred_template: Removed unreachable code

2023-10-03 Thread Dawid Kozinski/Multimedia (PLT) /SRPOL/Staff Engineer/Samsung Electronics



> -Original Message-
> From: ffmpeg-devel  On Behalf Of Ronald
> S. Bultje
> Sent: poniedziałek, 2 października 2023 15:49
> To: FFmpeg development discussions and patches 
> Cc: Dawid Kozinski ; d.frankie...@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 
> wrote:
> 
> > Signed-off-by: Dawid Kozinski 
> > ---
> >  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.

Dawid

> 
> Ronald
> ___
> ffmpeg-devel mailing list
> ffmpeg-devel@ffmpeg.org
> https://protect2.fireeye.com/v1/url?k=d33121fa-8cad08d0-d330aab5-
> 000babe598f7-032ae0d1a82bd0a7&q=1&e=1c6b6f88-d7aa-4952-9930-
> 83712a0c6be3&u=https%3A%2F%2Fffmpeg.org%2Fmailman%2Flistinfo%2Fffmp
> eg-devel
> 
> To unsubscribe, visit link above, or email ffmpeg-devel-requ...@ffmpeg.org
> with subject "unsubscribe".


___
ffmpeg-devel mailing list
ffmpeg-devel@ffmpeg.org
https://ffmpeg.org/mailman/listinfo/ffmpeg-devel

To unsubscribe, visit link above, or email
ffmpeg-devel-requ...@ffmpeg.org with subject "unsubscribe".


Re: [FFmpeg-devel] [PATCH v1] avcodec/hevcpred_template: Removed unreachable code

2023-10-02 Thread Ronald S. Bultje
Hi,

On Fri, Sep 29, 2023 at 4:32 AM Dawid Kozinski 
wrote:

> Signed-off-by: Dawid Kozinski 
> ---
>  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?

Ronald
___
ffmpeg-devel mailing list
ffmpeg-devel@ffmpeg.org
https://ffmpeg.org/mailman/listinfo/ffmpeg-devel

To unsubscribe, visit link above, or email
ffmpeg-devel-requ...@ffmpeg.org with subject "unsubscribe".


[FFmpeg-devel] [PATCH v1] avcodec/hevcpred_template: Removed unreachable code

2023-09-29 Thread Dawid Kozinski
Signed-off-by: Dawid Kozinski 
---
 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

___
ffmpeg-devel mailing list
ffmpeg-devel@ffmpeg.org
https://ffmpeg.org/mailman/listinfo/ffmpeg-devel

To unsubscribe, visit link above, or email
ffmpeg-devel-requ...@ffmpeg.org with subject "unsubscribe".