From 8448946e37983a55db92bdf46614de5f9c5ceab1 Mon Sep 17 00:00:00 2001 From: Vitor Sessak Date: Thu, 5 Jul 2007 03:01:53 +0000 Subject: Remove more useless parentheses. Originally committed as revision 9471 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/roqvideoenc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libavcodec/roqvideoenc.c') 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); -- cgit v1.2.3