summaryrefslogtreecommitdiffstats
path: root/libmpdemux/muxer_mpeg.c
diff options
context:
space:
mode:
authordiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2008-05-16 09:41:00 +0000
committerdiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2008-05-16 09:41:00 +0000
commitc4f6f66f9e9dc486b5c2f189866050e41144d296 (patch)
tree23cc9b5ee9e4410a807f1e0f0efa3711009af3f1 /libmpdemux/muxer_mpeg.c
parentbc0058c63ee75943bc4da0a297777b42905671c6 (diff)
downloadmpv-c4f6f66f9e9dc486b5c2f189866050e41144d296.tar.bz2
mpv-c4f6f66f9e9dc486b5c2f189866050e41144d296.tar.xz
cosmetics: Remove pointless parentheses from return statements.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@26790 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libmpdemux/muxer_mpeg.c')
-rw-r--r--libmpdemux/muxer_mpeg.c17
1 files changed, 7 insertions, 10 deletions
diff --git a/libmpdemux/muxer_mpeg.c b/libmpdemux/muxer_mpeg.c
index f5367e515b..2a659b7f00 100644
--- a/libmpdemux/muxer_mpeg.c
+++ b/libmpdemux/muxer_mpeg.c
@@ -231,27 +231,25 @@ static void fix_audio_sys_header(muxer_priv_t *priv, uint8_t id, uint8_t newid,
static inline int is_mpeg1(uint32_t x)
{
- return (
+ return
(x == 0x10000001) ||
(x == mmioFOURCC('m','p','g','1')) ||
- (x == mmioFOURCC('M','P','G','1'))
- );
+ (x == mmioFOURCC('M','P','G','1'));
}
static inline int is_mpeg2(uint32_t x)
{
- return (
+ return
(x == 0x10000002) ||
(x == mmioFOURCC('m','p','g','2')) ||
(x == mmioFOURCC('M','P','G','2')) ||
(x == mmioFOURCC('m','p','e','g')) ||
- (x == mmioFOURCC('M','P','E','G'))
- );
+ (x == mmioFOURCC('M','P','E','G'));
}
static inline int is_mpeg4(uint32_t x)
{
- return (
+ return
(x == 0x10000004) ||
(x == mmioFOURCC('d','i','v','x')) ||
(x == mmioFOURCC('D','I','V','X')) ||
@@ -265,8 +263,7 @@ static inline int is_mpeg4(uint32_t x)
(x == mmioFOURCC('F', 'M','P','4')) ||
(x == mmioFOURCC('f', 'm','p','4')) ||
(x == mmioFOURCC('D', 'X','5','0')) ||
- (x == mmioFOURCC('d', 'x','5','0'))
- );
+ (x == mmioFOURCC('d', 'x','5','0'));
}
//from unrarlib.c
@@ -666,7 +663,7 @@ static int write_mpeg_psm(muxer_t *muxer, char *buff)
static int psm_is_late(muxer_priv_t *priv)
{
- return (!priv->data_size || (priv->scr >= priv->last_psm_scr + 27000000ULL));
+ return !priv->data_size || (priv->scr >= priv->last_psm_scr + 27000000ULL);
}
static int write_mpeg_pes_header(muxer_headers_t *h, uint8_t *pes_id, uint8_t *buff, uint16_t plen, int stuffing_len, int mux_type)