diff options
author | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2021-09-22 23:37:59 +0200 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2021-09-24 00:14:01 +0200 |
commit | bb50823d2445a7e83fbc5036a1a7d5958bd10608 (patch) | |
tree | 3c73bf7d57d4078b637679318ebe721d0430c6ba | |
parent | 0f12d79a88fcd08789fe826e40ea7d1324896b18 (diff) | |
download | ffmpeg-bb50823d2445a7e83fbc5036a1a7d5958bd10608.tar.gz |
avformat/riffenc: Fix indentation
Forgotten after bf9a8d183ddcc65b5ae473bb048a3d38bd6df9f3.
Reviewed-by: Paul B Mahol <onemda@gmail.com>
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
-rw-r--r-- | libavformat/riffenc.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libavformat/riffenc.c b/libavformat/riffenc.c index 43c8bf957a..ffccfa3d48 100644 --- a/libavformat/riffenc.c +++ b/libavformat/riffenc.c @@ -191,10 +191,10 @@ int ff_put_wav_header(AVFormatContext *s, AVIOContext *pb, if (par->codec_id == AV_CODEC_ID_EAC3) { ff_put_guid(pb, ff_get_codec_guid(par->codec_id, ff_codec_wav_guids)); } else { - avio_wl32(pb, par->codec_tag); - avio_wl32(pb, 0x00100000); - avio_wl32(pb, 0xAA000080); - avio_wl32(pb, 0x719B3800); + avio_wl32(pb, par->codec_tag); + avio_wl32(pb, 0x00100000); + avio_wl32(pb, 0xAA000080); + avio_wl32(pb, 0x719B3800); } } else if ((flags & FF_PUT_WAV_HEADER_FORCE_WAVEFORMATEX) || par->codec_tag != 0x0001 /* PCM */ || |