[FFmpeg-cvslog] r15834 - trunk/libavformat/rdt.c

rbultje subversion
Sat Nov 15 21:42:42 CET 2008


Author: rbultje
Date: Sat Nov 15 21:42:41 2008
New Revision: 15834

Log:
Reindent after r15833.



Modified:
   trunk/libavformat/rdt.c

Modified: trunk/libavformat/rdt.c
==============================================================================
--- trunk/libavformat/rdt.c	(original)
+++ trunk/libavformat/rdt.c	Sat Nov 15 21:42:41 2008
@@ -236,10 +236,10 @@ ff_rdt_parse_header(const uint8_t *buf, 
      * [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;




More information about the ffmpeg-cvslog mailing list