summaryrefslogtreecommitdiff
path: root/libavformat
diff options
context:
space:
mode:
authorRonald S. Bultje <rsbultje@gmail.com>2009-04-08 03:06:08 +0000
committerRonald S. Bultje <rsbultje@gmail.com>2009-04-08 03:06:08 +0000
commit4bce3ba480db3f85dbc18417542cc1168edbd9d8 (patch)
treef904076e93841deeb8d7467fc79289e2ad71940c /libavformat
parent6e9f56c1277c19f36830c547d703e88cc41d78b7 (diff)
Reindent after r18372.
Originally committed as revision 18373 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat')
-rw-r--r--libavformat/riff.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/libavformat/riff.c b/libavformat/riff.c
index 014c762041..aa33c097c1 100644
--- a/libavformat/riff.c
+++ b/libavformat/riff.c
@@ -297,7 +297,7 @@ int put_wav_header(ByteIOContext *pb, AVCodecContext *enc)
if (waveformatextensible) {
put_le16(pb, 0xfffe);
} else {
- put_le16(pb, enc->codec_tag);
+ put_le16(pb, enc->codec_tag);
}
put_le16(pb, enc->channels);
put_le32(pb, enc->sample_rate);
@@ -378,10 +378,10 @@ int put_wav_header(ByteIOContext *pb, AVCodecContext *enc)
put_le16(pb, riff_extradata - riff_extradata_start);
}
put_buffer(pb, riff_extradata_start, riff_extradata - riff_extradata_start);
- if(hdrsize&1){
- hdrsize++;
- put_byte(pb, 0);
- }
+ if(hdrsize&1){
+ hdrsize++;
+ put_byte(pb, 0);
+ }
return hdrsize;
}