diff roqvideoenc.c @ 5205:922bb0564bd3 libavcodec

Remove more useless parentheses.
author vitor
date Thu, 05 Jul 2007 03:01:53 +0000
parents 579c01dbb5a1
children 661eff5542cb
line wrap: on
line diff
--- a/roqvideoenc.c	Tue Jul 03 09:55:56 2007 +0000
+++ b/roqvideoenc.c	Thu Jul 05 03:01:53 2007 +0000
@@ -608,7 +608,7 @@
 /* NOTE: Typecodes must be spooled AFTER arguments!! */
 static void write_typecode(CodingSpool *s, uint8_t type)
 {
-    s->typeSpool |= ((type) & 3) << (14 - s->typeSpoolLength);
+    s->typeSpool |= (type & 3) << (14 - s->typeSpoolLength);
     s->typeSpoolLength += 2;
     if (s->typeSpoolLength == 16) {
         bytestream_put_le16(s->pout, s->typeSpool);