summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohann <johannkoenig@google.com>2018-01-11 15:08:25 -0800
committerJohann <johannkoenig@google.com>2018-01-12 09:15:15 -0800
commitfd7de8362d2673d778b5ca8f1ea37e550e4a33a5 (patch)
tree8f0846feaebab22487856eb18c955d0c7ebbc7b0
parentb87250c56ecc2fbeccb6dd7303718590a7881a2a (diff)
downloadlibvpx-fd7de8362d2673d778b5ca8f1ea37e550e4a33a5.tar
libvpx-fd7de8362d2673d778b5ca8f1ea37e550e4a33a5.tar.gz
libvpx-fd7de8362d2673d778b5ca8f1ea37e550e4a33a5.tar.bz2
libvpx-fd7de8362d2673d778b5ca8f1ea37e550e4a33a5.zip
clang-format v5.0.0 y4minput.c
Remove trailing empty line to keep the comment from being indented. https://bugs.llvm.org/show_bug.cgi?id=35930 Change-Id: If0f0862623b3fa3ae49e850edbbed52c2b4c6672
-rw-r--r--y4minput.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/y4minput.c b/y4minput.c
index e2df7a299..bf349c059 100644
--- a/y4minput.c
+++ b/y4minput.c
@@ -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)))