summaryrefslogtreecommitdiffstats
path: root/services/audioflinger/AudioFlinger.cpp
diff options
context:
space:
mode:
authorGlenn Kasten <gkasten@google.com>2014-01-31 09:41:08 -0800
committerGlenn Kasten <gkasten@google.com>2014-02-03 17:10:57 -0800
commit6e0d67d7b496ce17c0970a4ffd3a6f808860949c (patch)
treee9d0c68908bcbbcb3eb5ef28b2b2c0db5488fa39 /services/audioflinger/AudioFlinger.cpp
parentcc1e0e807ee9a9f163a4685cbd6efd6ae55849cf (diff)
downloadframeworks_av-6e0d67d7b496ce17c0970a4ffd3a6f808860949c.zip
frameworks_av-6e0d67d7b496ce17c0970a4ffd3a6f808860949c.tar.gz
frameworks_av-6e0d67d7b496ce17c0970a4ffd3a6f808860949c.tar.bz2
Use Format_isValid() and Format_isEqual() instead of direct comparison
Change-Id: Ie87607aa514976947540a77775e6425c4e56e7d9
Diffstat (limited to 'services/audioflinger/AudioFlinger.cpp')
-rw-r--r--services/audioflinger/AudioFlinger.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/services/audioflinger/AudioFlinger.cpp b/services/audioflinger/AudioFlinger.cpp
index f9cc17b..039a0d8 100644
--- a/services/audioflinger/AudioFlinger.cpp
+++ b/services/audioflinger/AudioFlinger.cpp
@@ -1783,7 +1783,7 @@ audio_io_handle_t AudioFlinger::openInput(audio_module_handle_t module,
popcount(inStream->common.get_channels(&inStream->common)));
if (!mTeeSinkInputEnabled) {
kind = TEE_SINK_NO;
- } else if (format == Format_Invalid) {
+ } else if (!Format_isValid(format)) {
kind = TEE_SINK_NO;
} else if (mRecordTeeSink == 0) {
kind = TEE_SINK_NEW;