OSDN Git Service

Make inlines static
authorColin Cross <ccross@android.com>
Fri, 30 Jun 2017 21:05:23 +0000 (14:05 -0700)
committerColin Cross <ccross@android.com>
Sat, 1 Jul 2017 03:34:02 +0000 (03:34 +0000)
commit43a02cf87d1b3ed5fc587d4fd020af0650ca36dd
tree0aebcfd48ce93447ba4376b4aeb0f0dcaa5edc4e
parent7180e89fd297601e45660457c1ed2d358eb20626
Make inlines static

Compiling the non-static inlines with -Oz results in missing symbols,
because clang chooses not to inline the functions but also doesn't
emit a definition because they are not static or extern.  They are
only used in this .c file, so make them static.

Test: builds with -Oz
Bug: 62549703
Change-Id: Ibb78ad982c2911e151f0dd6b01eb6164fe6e8e63
Merged-In: Ibb78ad982c2911e151f0dd6b01eb6164fe6e8e63
audio_utils/channels.c