Mercurial > libavformat.hg
changeset 4030:c7354edc3496 libavformat
Reindent after r15833.
author | rbultje |
---|---|
date | Sat, 15 Nov 2008 20:42:41 +0000 |
parents | 9a0a46d465ae |
children | cd5a6a766b14 |
files | rdt.c |
diffstat | 1 files changed, 4 insertions(+), 4 deletions(-) [+] |
line wrap: on
line diff
--- a/rdt.c Sat Nov 15 20:41:59 2008 +0000 +++ b/rdt.c Sat Nov 15 20:42:41 2008 +0000 @@ -236,10 +236,10 @@ * [2] http://www.wireshark.org/docs/dfref/r/rdt.html and * http://anonsvn.wireshark.org/viewvc/trunk/epan/dissectors/packet-rdt.c */ - if (set_id) *set_id = (buf[0]>>1) & 0x1f; - if (seq_no) *seq_no = AV_RB16(buf+1); - if (timestamp) *timestamp = AV_RB32(buf+4); - if (stream_id) *stream_id = (buf[3]>>1) & 0x1f; + if (set_id) *set_id = (buf[0]>>1) & 0x1f; + if (seq_no) *seq_no = AV_RB16(buf+1); + if (timestamp) *timestamp = AV_RB32(buf+4); + if (stream_id) *stream_id = (buf[3]>>1) & 0x1f; if (is_keyframe) *is_keyframe = !(buf[3] & 0x1); return consumed;