[FFmpeg-cvslog] swscale/utils: remove useless ()

Michael Niedermayer git at videolan.org
Mon Dec 16 02:27:00 CET 2013


ffmpeg | branch: release/2.0 | Michael Niedermayer <michaelni at gmx.at> | Sun Dec 15 14:10:02 2013 +0100| [9de71b0eb2d214323e87fa6cdba1da434bdde69f] | committer: Carl Eugen Hoyos

swscale/utils: remove useless ()

Signed-off-by: Michael Niedermayer <michaelni at gmx.at>
(cherry picked from commit 554e913fd7acc9da02ddac2c5ce9487f7f633c92)

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=9de71b0eb2d214323e87fa6cdba1da434bdde69f
---

 libswscale/utils.c |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/libswscale/utils.c b/libswscale/utils.c
index 5170321..c87cbf5 100644
--- a/libswscale/utils.c
+++ b/libswscale/utils.c
@@ -1268,8 +1268,8 @@ av_cold int sws_init_context(SwsContext *c, SwsFilter *srcFilter,
         dst_stride <<= 1;
 
     if (INLINE_MMXEXT(cpu_flags) && c->srcBpc == 8 && c->dstBpc <= 14) {
-        c->canMMXEXTBeUsed = (dstW >= srcW && (dstW & 31) == 0 &&
-                              (srcW & 15) == 0) ? 1 : 0;
+        c->canMMXEXTBeUsed = dstW >= srcW && (dstW & 31) == 0 &&
+                             (srcW & 15) == 0;
         if (!c->canMMXEXTBeUsed && dstW >= srcW && (srcW & 15) == 0
 
             && (flags & SWS_FAST_BILINEAR)) {



More information about the ffmpeg-cvslog mailing list