diff options
author | Carl Eugen Hoyos <cehoyos@rainbow.studorg.tuwien.ac.at> | 2010-12-29 23:43:25 +0000 |
---|---|---|
committer | Carl Eugen Hoyos <cehoyos@rainbow.studorg.tuwien.ac.at> | 2010-12-29 23:43:25 +0000 |
commit | 548b97a66a41e610a419ffec2b4a32d28166dea5 (patch) | |
tree | a850477e3e2f5babc155a16b6f76dc9600e0d15f /libavformat/spdifenc.c | |
parent | cc6c0c7b5231591396f771938ddf5ed90f3a49b1 (diff) | |
download | ffmpeg-548b97a66a41e610a419ffec2b4a32d28166dea5.tar.gz |
Cosmetics: Re-indent after last commit.
Originally committed as revision 26161 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/spdifenc.c')
-rw-r--r-- | libavformat/spdifenc.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libavformat/spdifenc.c b/libavformat/spdifenc.c index 704eb9e3ab..d76b3f74ca 100644 --- a/libavformat/spdifenc.c +++ b/libavformat/spdifenc.c @@ -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) { |