clang-format v5.0.0 y4minput.c
authorJohann <johannkoenig@google.com>
Thu, 11 Jan 2018 23:08:25 +0000 (15:08 -0800)
committerJohann <johannkoenig@google.com>
Fri, 12 Jan 2018 17:15:15 +0000 (09:15 -0800)
Remove trailing empty line to keep the comment from being indented.
https://bugs.llvm.org/show_bug.cgi?id=35930

Change-Id: If0f0862623b3fa3ae49e850edbbed52c2b4c6672

y4minput.c

index e2df7a2..bf349c0 100644 (file)
@@ -139,7 +139,6 @@ static int y4m_parse_tags(y4m_input *_y4m, char *_tags) {
   Conversions which require both horizontal and vertical filtering could
    have these steps pipelined, for less memory consumption and better cache
    performance, but we do them separately for simplicity.*/
-
 #define OC_MINI(_a, _b) ((_a) > (_b) ? (_b) : (_a))
 #define OC_MAXI(_a, _b) ((_a) < (_b) ? (_b) : (_a))
 #define OC_CLAMPI(_a, _b, _c) (OC_MAXI(_a, OC_MINI(_b, _c)))