diff mbox series

[FFmpeg-devel,19/27] avformat/riffenc: Fix indentation

Message ID AM7PR03MB6660B6DAFBE54F525D148BD68FA39@AM7PR03MB6660.eurprd03.prod.outlook.com
State Accepted
Commit bb50823d2445a7e83fbc5036a1a7d5958bd10608
Headers show
Series [FFmpeg-devel,01/27] avformat/astenc: Simplify writing padding | expand

Checks

Context Check Description
andriy/make_x86 success Make finished
andriy/make_fate_x86 success Make fate finished
andriy/make_ppc success Make finished
andriy/make_fate_ppc success Make fate finished

Commit Message

Andreas Rheinhardt Sept. 23, 2021, 3:28 p.m. UTC
Forgotten after bf9a8d183ddcc65b5ae473bb048a3d38bd6df9f3.

Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
---
 libavformat/riffenc.c | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

Comments

Paul B Mahol Sept. 23, 2021, 6:39 p.m. UTC | #1
lgtm
diff mbox series

Patch

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 */ ||