summaryrefslogtreecommitdiff
path: root/libavcodec/roqvideoenc.c
diff options
context:
space:
mode:
authorVitor Sessak <vitor1001@gmail.com>2007-07-05 03:01:53 +0000
committerVitor Sessak <vitor1001@gmail.com>2007-07-05 03:01:53 +0000
commit8448946e37983a55db92bdf46614de5f9c5ceab1 (patch)
treecea597bbecd24e50de37389de40617295d6e93da /libavcodec/roqvideoenc.c
parentc74a8fe62a004f88864f6d6440721e7a4982fb15 (diff)
Remove more useless parentheses.
Originally committed as revision 9471 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/roqvideoenc.c')
-rw-r--r--libavcodec/roqvideoenc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/roqvideoenc.c b/libavcodec/roqvideoenc.c
index 640ee310c4..380ae9e13c 100644
--- a/libavcodec/roqvideoenc.c
+++ b/libavcodec/roqvideoenc.c
@@ -608,7 +608,7 @@ typedef struct
/* 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);