]> git.sesse.net Git - ffmpeg/commitdiff
Cosmetics: Re-indent after last commit.
authorCarl Eugen Hoyos <cehoyos@rainbow.studorg.tuwien.ac.at>
Wed, 29 Dec 2010 23:43:25 +0000 (23:43 +0000)
committerCarl Eugen Hoyos <cehoyos@rainbow.studorg.tuwien.ac.at>
Wed, 29 Dec 2010 23:43:25 +0000 (23:43 +0000)
Originally committed as revision 26161 to svn://svn.ffmpeg.org/ffmpeg/trunk

libavformat/spdifenc.c

index 704eb9e3abd196f66d7a8c74006a720108406950..d76b3f74ca10b0d4629727aecdfcf6075e263557 100644 (file)
@@ -354,10 +354,10 @@ static int spdif_write_packet(struct AVFormatContext *s, AVPacket *pkt)
     }
 
     if (ctx->use_preamble) {
-    put_le16(s->pb, SYNCWORD1);      //Pa
-    put_le16(s->pb, SYNCWORD2);      //Pb
-    put_le16(s->pb, ctx->data_type); //Pc
-    put_le16(s->pb, ctx->length_code);//Pd
+        put_le16(s->pb, SYNCWORD1);       //Pa
+        put_le16(s->pb, SYNCWORD2);       //Pb
+        put_le16(s->pb, ctx->data_type);  //Pc
+        put_le16(s->pb, ctx->length_code);//Pd
     }
 
     if (HAVE_BIGENDIAN ^ ctx->extra_bswap) {