]> git.sesse.net Git - ffmpeg/commitdiff
lavd/decklink_dec: fix indentation
authorMarton Balint <cus@passwd.hu>
Thu, 13 Oct 2016 21:58:53 +0000 (23:58 +0200)
committerMarton Balint <cus@passwd.hu>
Fri, 21 Oct 2016 18:24:12 +0000 (20:24 +0200)
Signed-off-by: Marton Balint <cus@passwd.hu>
libavdevice/decklink_dec.cpp

index 5318bbe690a54bcfe065766f91f6bac6f2405fc4..c98c51f6bf7db060d1afc097359ea174bb108c6a 100644 (file)
@@ -310,17 +310,17 @@ HRESULT decklink_input_callback::VideoInputFrameArrived(
 
         if (videoFrame->GetFlags() & bmdFrameHasNoInputSource) {
             if (ctx->draw_bars && videoFrame->GetPixelFormat() == bmdFormat8BitYUV) {
-            unsigned bars[8] = {
-                0xEA80EA80, 0xD292D210, 0xA910A9A5, 0x90229035,
-                0x6ADD6ACA, 0x51EF515A, 0x286D28EF, 0x10801080 };
-            int width  = videoFrame->GetWidth();
-            int height = videoFrame->GetHeight();
-            unsigned *p = (unsigned *)frameBytes;
-
-            for (int y = 0; y < height; y++) {
-                for (int x = 0; x < width; x += 2)
-                    *p++ = bars[(x * 8) / width];
-            }
+                unsigned bars[8] = {
+                    0xEA80EA80, 0xD292D210, 0xA910A9A5, 0x90229035,
+                    0x6ADD6ACA, 0x51EF515A, 0x286D28EF, 0x10801080 };
+                int width  = videoFrame->GetWidth();
+                int height = videoFrame->GetHeight();
+                unsigned *p = (unsigned *)frameBytes;
+
+                for (int y = 0; y < height; y++) {
+                    for (int x = 0; x < width; x += 2)
+                        *p++ = bars[(x * 8) / width];
+                }
             }
 
             if (!no_video) {