diff options
author | Ronald S. Bultje <rsbultje@gmail.com> | 2008-11-15 20:42:41 +0000 |
---|---|---|
committer | Ronald S. Bultje <rsbultje@gmail.com> | 2008-11-15 20:42:41 +0000 |
commit | 3d883ad5f3c8c9f501f7f98bceb7f7ed4a0d7708 (patch) | |
tree | a20a87ba29d315860655122fc8810db00a2dfc15 /libavformat | |
parent | 114732f4c72a854a3e4409d01ff0e8eb1fb2c20d (diff) | |
download | ffmpeg-streaming-3d883ad5f3c8c9f501f7f98bceb7f7ed4a0d7708.zip ffmpeg-streaming-3d883ad5f3c8c9f501f7f98bceb7f7ed4a0d7708.tar.gz |
Reindent after r15833.
Originally committed as revision 15834 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat')
-rw-r--r-- | libavformat/rdt.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libavformat/rdt.c b/libavformat/rdt.c index 3553cd9..b44ede9 100644 --- a/libavformat/rdt.c +++ b/libavformat/rdt.c @@ -236,10 +236,10 @@ ff_rdt_parse_header(const uint8_t *buf, int len, * [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; |