diff options
author | Baptiste Coudurier <baptiste.coudurier@gmail.com> | 2007-02-14 11:18:34 +0000 |
---|---|---|
committer | Baptiste Coudurier <baptiste.coudurier@gmail.com> | 2007-02-14 11:18:34 +0000 |
commit | 8d97aedbaafa38ac9305683b4e941afa66deaffe (patch) | |
tree | 42e5b31283f1b27afa0b9d0a80977e8f9a529853 | |
parent | 400615b68b1f741b2bc267c97b8dcf2caa7c913d (diff) | |
download | ffmpeg-8d97aedbaafa38ac9305683b4e941afa66deaffe.tar.gz |
indentation
Originally committed as revision 7979 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavformat/aiff.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/libavformat/aiff.c b/libavformat/aiff.c index 0d75f3be30..da310f03a0 100644 --- a/libavformat/aiff.c +++ b/libavformat/aiff.c @@ -180,10 +180,10 @@ static int aiff_write_header(AVFormatContext *s) put_tag(pb, aifc ? "AIFC" : "AIFF"); if (aifc) { - /* Version chunk */ - put_tag(pb, "FVER"); - put_be32(pb, 4); - put_be32(pb, 0xA2805140); + /* Version chunk */ + put_tag(pb, "FVER"); + put_be32(pb, 4); + put_be32(pb, 0xA2805140); } /* Common chunk */ @@ -209,8 +209,8 @@ static int aiff_write_header(AVFormatContext *s) put_buffer(pb, (uint8_t*)&sample_rate, sizeof(sample_rate)); if (aifc) { - put_le32(pb, enc->codec_tag); - put_be16(pb, 0); + put_le32(pb, enc->codec_tag); + put_be16(pb, 0); } /* Sound data chunk */ |