]> git.sesse.net Git - ffmpeg/commit
lavc/libvpxenc: remove redundant condition check
authorJun Zhao <barryjzhao@tencent.com>
Fri, 10 May 2019 13:02:40 +0000 (21:02 +0800)
committerJun Zhao <barryjzhao@tencent.com>
Sun, 12 May 2019 06:17:52 +0000 (14:17 +0800)
commitf82a02aa89ceb1f12c6f8f1627a93f2d568d9648
tree69fc2ffef99d73625e6decb25eca7875214a8a9a
parent3af73f2c8588283dfaa41cf4465f8fc40549f233
lavc/libvpxenc: remove redundant condition check

Redundant condition: '!A || B' is equivalent to '!A || (A && B)' but
more clearly.

Signed-off-by: Jun Zhao <barryjzhao@tencent.com>
libavcodec/libvpxenc.c