diff options
author | Diego Biurrun <diego@biurrun.de> | 2014-08-06 04:39:24 -0700 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2014-08-07 07:52:17 -0700 |
commit | 6d6bd3a3db24747ae5e10716f4782129c38951f6 (patch) | |
tree | 99013a04a431bff101766dd72449d77b379ac98d /libavformat/mpegtsenc.c | |
parent | b7b1bf9166ac3102c401295fdd5d4933c512aa50 (diff) | |
download | ffmpeg-6d6bd3a3db24747ae5e10716f4782129c38951f6.tar.gz |
mpegts: Drop some unnecessary parentheses
Diffstat (limited to 'libavformat/mpegtsenc.c')
-rw-r--r-- | libavformat/mpegtsenc.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/libavformat/mpegtsenc.c b/libavformat/mpegtsenc.c index 0f920acc7a..c488989bd8 100644 --- a/libavformat/mpegtsenc.c +++ b/libavformat/mpegtsenc.c @@ -110,20 +110,20 @@ static void mpegts_write_section(MpegTSSection *s, uint8_t *buf, int len) buf[len - 4] = (crc >> 24) & 0xff; buf[len - 3] = (crc >> 16) & 0xff; buf[len - 2] = (crc >> 8) & 0xff; - buf[len - 1] = (crc) & 0xff; + buf[len - 1] = crc & 0xff; /* send each packet */ buf_ptr = buf; while (len > 0) { - first = (buf == buf_ptr); + first = buf == buf_ptr; q = packet; *q++ = 0x47; - b = (s->pid >> 8); + b = s->pid >> 8; if (first) b |= 0x40; *q++ = b; *q++ = s->pid; - s->cc = (s->cc + 1) & 0xf; + s->cc = s->cc + 1 & 0xf; *q++ = 0x10 | s->cc; if (first) *q++ = 0; /* 0 offset */ @@ -821,12 +821,12 @@ static void mpegts_write_pes(AVFormatContext *s, AVStream *st, /* prepare packet header */ q = buf; *q++ = 0x47; - val = (ts_st->pid >> 8); + val = ts_st->pid >> 8; if (is_start) val |= 0x40; *q++ = val; *q++ = ts_st->pid; - ts_st->cc = (ts_st->cc + 1) & 0xf; + ts_st->cc = ts_st->cc + 1 & 0xf; *q++ = 0x10 | ts_st->cc; // payload indicator + CC if (key && is_start && pts != AV_NOPTS_VALUE) { // set Random Access for key frames |