OSDN Git Service

rtpdec_vp8: Cosmetics: Fix bad alignment/indentation
authorMartin Storsjö <martin@martin.st>
Wed, 12 Dec 2012 14:59:45 +0000 (16:59 +0200)
committerMartin Storsjö <martin@martin.st>
Sun, 16 Dec 2012 19:33:20 +0000 (21:33 +0200)
Signed-off-by: Martin Storsjö <martin@martin.st>
libavformat/rtpdec_vp8.c

index a364358..99ca60a 100644 (file)
@@ -33,7 +33,7 @@
 
 struct PayloadContext {
     AVIOContext *data;
-    uint32_t       timestamp;
+    uint32_t     timestamp;
 };
 
 static int vp8_handle_packet(AVFormatContext *ctx,
@@ -100,7 +100,7 @@ static int vp8_handle_packet(AVFormatContext *ctx,
         if ((res = avio_open_dyn_buf(&vp8->data)) < 0)
             return res;
         vp8->timestamp = *timestamp;
-     }
+    }
 
     if (!vp8->data || vp8->timestamp != *timestamp) {
         av_log(ctx, AV_LOG_WARNING,