commit | 8c90f1f7b5feef0bc2a2bc3419e4b3c46dc4cc57 | [log] [tgz] |
---|---|---|
author | Antoine SOULIER <asoulier@google.com> | Tue Sep 26 18:55:17 2023 +0000 |
committer | Henri Chataing <henrichataing@google.com> | Mon Dec 04 18:51:16 2023 +0000 |
tree | 6ae611ab0b293a2745f47e88b580a1530495053c | |
parent | e70014de66de26e0435b0c464577b53608a434bf [diff] |
Codec Extensibility Base AIDL Test: m Bug: 297037759 Change-Id: I3f440a75aeada6c8739b89f89a6d942488c8ce77
diff --git a/bluetooth/audio/aidl/default/BluetoothAudioProvider.cpp b/bluetooth/audio/aidl/default/BluetoothAudioProvider.cpp index 9c72e19..f9b18f8 100644 --- a/bluetooth/audio/aidl/default/BluetoothAudioProvider.cpp +++ b/bluetooth/audio/aidl/default/BluetoothAudioProvider.cpp
@@ -168,4 +168,4 @@ } // namespace bluetooth } // namespace hardware } // namespace android -} // namespace aidl \ No newline at end of file +} // namespace aidl
diff --git a/bluetooth/audio/aidl/default/BluetoothAudioProviderFactory.cpp b/bluetooth/audio/aidl/default/BluetoothAudioProviderFactory.cpp index 91731d4..7e928e9 100644 --- a/bluetooth/audio/aidl/default/BluetoothAudioProviderFactory.cpp +++ b/bluetooth/audio/aidl/default/BluetoothAudioProviderFactory.cpp
@@ -135,8 +135,17 @@ return ndk::ScopedAStatus::ok(); } +ndk::ScopedAStatus BluetoothAudioProviderFactory::getProviderInfo( + SessionType session_type, std::optional<ProviderInfo>* _aidl_return) { + *_aidl_return = std::nullopt; + + (void)session_type; + + return ndk::ScopedAStatus::ok(); +} + } // namespace audio } // namespace bluetooth } // namespace hardware } // namespace android -} // namespace aidl \ No newline at end of file +} // namespace aidl
diff --git a/bluetooth/audio/aidl/default/BluetoothAudioProviderFactory.h b/bluetooth/audio/aidl/default/BluetoothAudioProviderFactory.h index b38cfd2..1afae64 100644 --- a/bluetooth/audio/aidl/default/BluetoothAudioProviderFactory.h +++ b/bluetooth/audio/aidl/default/BluetoothAudioProviderFactory.h
@@ -35,6 +35,10 @@ ndk::ScopedAStatus getProviderCapabilities( const SessionType session_type, std::vector<AudioCapabilities>* _aidl_return) override; + + ndk::ScopedAStatus getProviderInfo( + SessionType in_sessionType, + std::optional<ProviderInfo>* _aidl_return) override; }; } // namespace audio