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>
Fri, 30 Jun 2017 23:46:27 +0000 (16:46 -0700)
commitc7eae5d84a55de0450b9947a26127ef05cb089a5
treed78145ffe34091530f8d2c583de8d76671e4d250
parenta6bddef1a2549c0b05b1fdb4a3bee4b06224f70b
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
audio_utils/channels.c