AudioFlinger: Fix Tee track filename
Test: adb shell audiorecorder --target /data/file.raw
Bug: 111453086
Change-Id: I5cd1ecd9f85bb2278e6d1f9434aa453833afa173
Signed-off-by: Kevin Rocard <krocard@google.com>
diff --git a/services/audioflinger/Tracks.cpp b/services/audioflinger/Tracks.cpp
index 22d34b2..e4af656 100644
--- a/services/audioflinger/Tracks.cpp
+++ b/services/audioflinger/Tracks.cpp
@@ -449,7 +449,7 @@
|| thread->type() == ThreadBase::DUPLICATING;
#ifdef TEE_SINK
mTee.setId(std::string("_") + std::to_string(mThreadIoHandle)
- + "_" + std::to_string(mId));
+ + "_" + std::to_string(mId) + "_T");
#endif
if (channelMask & AUDIO_CHANNEL_HAPTIC_ALL) {