Re: [FFmpeg-devel] [PATCH 4/6] lavc/libvpxenc: remove redundant condition check

2019-05-12 Thread myp...@gmail.com
On Sat, May 11, 2019 at 3:14 AM Vignesh Venkatasubramanian wrote: > > From: Jun Zhao > Date: Fri, May 10, 2019 at 9:06 AM > To: > Cc: Jun Zhao > > > From: Jun Zhao > > > > Redundant condition: '!A || B' is equivalent to '!A || (A && B)' but > > more clearly. > > > > Signed-off-by: Jun Zhao >

Re: [FFmpeg-devel] [PATCH 4/6] lavc/libvpxenc: remove redundant condition check

2019-05-10 Thread Vignesh Venkatasubramanian
From: Jun Zhao Date: Fri, May 10, 2019 at 9:06 AM To: Cc: Jun Zhao > From: Jun Zhao > > Redundant condition: '!A || B' is equivalent to '!A || (A && B)' but > more clearly. > > Signed-off-by: Jun Zhao > --- > libavcodec/libvpxenc.c |2 +- > 1 files changed, 1 insertions(+), 1

[FFmpeg-devel] [PATCH 4/6] lavc/libvpxenc: remove redundant condition check

2019-05-10 Thread Jun Zhao
From: Jun Zhao Redundant condition: '!A || B' is equivalent to '!A || (A && B)' but more clearly. Signed-off-by: Jun Zhao --- libavcodec/libvpxenc.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/libavcodec/libvpxenc.c b/libavcodec/libvpxenc.c index c823b8a..feb52ea