ऑडियो कंट्रोल एचएएल

ऑडियो कंट्रोल एचएएल को Android 9 में पेश किया गया था, ताकि वाहन संबंधित ऑडियो इस्तेमाल के मामलों में मदद मिलती है. Android तक 14, ऑडियो कंट्रोल HAL के साथ ये सुविधाएं काम करती हैं:

  • फ़ेड और बैलेंस
  • एचएएल ऑडियो फ़ोकस का अनुरोध
  • डिवाइस को म्यूट करना और डकिंग करना
  • ऑडियो डिवाइस गेन में बदलाव
  • ऑडियो पोर्ट के कॉन्फ़िगरेशन में बदलाव किए गए

पहली इमेज में, कार की ऑडियो सर्विस के आर्किटेक्चर की खास जानकारी दिखाई गई है. जिसे कार की ऑडियो सेवा, ऑडियो कंट्रोल एचएएल से कनेक्ट करती है.

मल्टी-ज़ोन ऑडियो कॉन्फ़िगर करें

पहला डायग्राम. मल्टी-ज़ोन ऑडियो कॉन्फ़िगर करें.

ऑडियो फ़ेड और बैलेंस

HIDL ऑडियो कंट्रोल HAL वर्शन 1 को Android में पेश किया गया वाहन संबंधित इस्तेमाल में ऑडियो फ़ेड और बैलेंस की सुविधा के लिए 9 मामले. यह Android में पहले से मौजूद सामान्य ऑडियो इफ़ेक्ट से अलग है. सिस्टम के ऐप्लिकेशन को ऑडियो बैलेंस सेट करने और फ़ेड थ्रू करने की अनुमति मिलती है CarAudioManager एपीआई:

class CarAudioManager {
       /**
       *   Adjust the relative volume in the front vs back of the vehicle cabin.
       *
       *   @param value in the range -1.0 to 1.0 for fully toward the back through
       *   fully toward the front. 0.0 means evenly balanced.
       */
       @SystemApi
       @RequiresPermission(Car.PERMISSION_CAR_CONTROL_AUDIO_VOLUME)
       public void setFadeTowardFront(float value);

       /**
       *   Adjust the relative volume on the left vs right side of the vehicle cabin.
       *
       *   @param value in the range -1.0 to 1.0 for fully toward the left through
       *   fully toward the right. 0.0 means evenly balanced.
       */
       @SystemApi
       @RequiresPermission(Car.PERMISSION_CAR_CONTROL_AUDIO_VOLUME)
       public void setBalanceTowardRight(float value);
}

इन एपीआई को कॉल करने के बाद, उनसे जुड़े ऑडियो कंट्रोल HAL एपीआई को कॉल किया जाता है कार ऑडियो सेवा से:

interface IAudioControl {
       /**
       *   Control the right/left balance setting of the car speakers.
       */
       oneway setBalanceTowardRight(float value);

       /**
       *   Control the fore/aft fade setting of the car speakers.
       */
       oneway setFadeTowardFront(float value);
}

यह एपीआई, ऑडियो कंट्रोल एचएएल के सभी वर्शन पर उपलब्ध है. इनमें नए वर्शन भी शामिल हैं AIDL HAL इंटरफ़ेस.

एचएएल से ऑडियो फ़ोकस का अनुरोध

Android की तरह ही AAOS में, ऑडियो पर ऐप्लिकेशन के सक्रिय रूप से हिस्सा लेने की ज़रूरत होती है करने पर फ़ोकस किया जा सकता है. फ़ोकस की जानकारी का इस्तेमाल, से आवाज़ को कंट्रोल कर सकते हैं. इसलिए, Google के टूल ऑडियो फ़ोकस और कार की आवाज़ों का बेहतर इंटिग्रेशन देने के लिए Google Search में ये ऑडियो एट्रिब्यूट शामिल किए गए हैं. Android 11:

  • EMERGENCY
  • SAFETY
  • VEHICLE_STATUS
  • ANNOUNCEMENT

इस बदलाव के अलावा, इनसे आने वाली आवाज़ों के लिए एक सिस्टम जोड़ा गया है ताकि ऑडियो फ़ोकस के अनुरोधों पर कार्रवाई की जा सके. इसलिए, HIDL ऑडियो कंट्रोल HAL वर्शन 2 को इसलिए पेश किया गया था, ताकि फ़ोकस करने वाले अनुरोधों को अनुमति दी जा सके Android के बाहर से:

interface IAudioControl {
       /**
       *   Registers focus listener to be used by HAL for requesting and
       *   abandoning audio focus.
       *   @param listener the listener interface
       *   @return closeHandle A handle to unregister observer.
       */
       registerFocusListener(IFocusListener listener)
       generates (ICloseHandle closeHandle);

       /**
       *   Notifies HAL of changes in audio focus status for focuses requested
       *   or abandoned by the HAL.
       *
       *   @param usage The audio usage associated with the focus change
       *   @param zoneId The identifier for the audio zone that the HAL is
       *   playing the stream in
       *   @param focusChange the AudioFocusChange that has occurred
       */
       oneway onAudioFocusChange(bitfield<AudioUsage> usage, int32_t zoneId,
       bitfield<AudioFocusChange> focusChange);
}

जहां IFocusListener को इस तरह परिभाषित किया गया है:

interface IFocusListener {
       /**
       *   Called whenever HAL is requesting focus as it is starting to play
       *   audio of a given usage in a specified zone.
       *
       *   @param usage The audio usage associated with the focus request
       *    {@code AttributeUsage}
       *   @param zoneId The identifier for the audio zone where the HAL is
       *    requesting focus
       *   @param focusGain The AudioFocusChange associated with this request.
       */
       oneway requestAudioFocus(bitfield<AudioUsage> usage,
       int32_t zoneId, bitfield<AudioFocusChange> focusGain);
       /**
       *   Called whenever HAL is abandoning focus as it is finished playing audio
       *   of a given usage in a specific zone.
       *
       *   @param usage The audio usage for which the HAL is abandoning focus
       *    {@code AttributeUsage}
       *   @param zoneId The identifier for the audio zone that the HAL
       *    abandoning focus
       */
       oneway abandonAudioFocus(bitfield<AudioUsage> usage, int32_t zoneId);
}

ऊपर दिए गए एपीआई का इस्तेमाल, एचएएल से ऑडियो फ़ोकस का अनुरोध करने और उसे बंद करने के लिए किया जा सकता है. क्रम से. जवाब में, कार की ऑडियो सेवा, ऑडियो फ़ोकस को ध्यान में रखती है यह अनुरोध करता है और नतीजों को एसिंक्रोनस रूप से IAudioControl#onAudioFocusChange तरीका.

इस एपीआई का इस्तेमाल, उस ऑडियो फ़ोकस अनुरोध में हुए बदलावों पर नज़र रखने के लिए भी किया जा सकता है जो ऑडियो कंट्रोल एचएएल से शुरू होता है. आम तौर पर, किसी भी स्टैंडिंग ऑडियो फ़ोकस को एचएएल के अनुरोध को चालू माना जाता है. यह ऑडियो फ़ोकस से अलग होता है Android से आने वाला अनुरोध, जिसमें सिर्फ़ उस ऑडियो ट्रैक को चलाया जा रहा हो जो चालू हो उसे ऐक्टिव माना जाता है.

HIDL को एआईडीएल ऑडियो कंट्रोल एचएएल पर माइग्रेट करें

एआईडीएल के आने से और Android पर डेटा दूसरी जगह भेजना 12 (ज़्यादा जानने के लिए, HAL), ऑडियो कंट्रोल HAL था एआईडीएल पर माइग्रेट किया गया. मौजूदा HIDL ऑडियो कंट्रोल वर्शन 2 API के लिए, माइग्रेशन मौजूदा तरीकों में छोटे-मोटे अपडेट ज़रूरी हैं:

interface IAudioControl {
       /**
       *   Notifies HAL of changes in audio focus status for focuses requested
       *   or abandoned by the HAL.
       *
       *   @param usage The audio usage associated with the focus change
       *        {@code AttributeUsage}. See {@code audioUsage} in
       *        audio_policy_configuration.xsd for the list of allowed values.
       *   @param zoneId The identifier for the audio zone that the HAL is
       *        playing the stream in
       *   @param focusChange the AudioFocusChange that has occurred.
       */
       oneway void onAudioFocusChange(in String usage, in int zoneId,
              in AudioFocusChange focusChange);
       /**
       *   Registers focus listener to be used by HAL for requesting and
       *   abandoning audio focus.
       *   @param listener the listener interface.
       */
       oneway void registerFocusListener(in IFocusListener listener);
       /**
       *   Control the right/left balance setting of the car speakers.
       */
       oneway void setBalanceTowardRight(in float value);
       /**
       *   Control the fore/aft fade setting of the car speakers.
       */
       oneway void setFadeTowardFront(in float value);
}

और इससे जुड़े IFocusListener:

       interface IFocusListener {
       /**
       *   Called whenever HAL is abandoning focus as it is finished playing audio
       *   of a given usage in a specific zone.
       *
       *   @param usage The audio usage for which the HAL is abandoning focus
       *        {@code AttributeUsage}. See {@code audioUsage} in
       *        audio_policy_configuration.xsd for the list of allowed values.
       *   @param zoneId The identifier for the audio zone that the HAL
       *        abandoning focus
       */
       oneway void abandonAudioFocus(in String usage, in int zoneId);
       /**
       *   Called whenever HAL is requesting focus as it is starting to play audio
       *        of a given usage in a specified zone.
       *
       *   @param usage The audio usage associated with the focus request
       *        {@code AttributeUsage}. See {@code audioUsage} in
       *        audio_policy_configuration.xsd for the list of allowed values.
       *   @param zoneId The identifier for the audio zone where the HAL is
       *        requesting focus
       *   @param focusGain The AudioFocusChange associated with this request.
       */
       oneway void requestAudioFocus(in String usage, in int zoneId,
              in AudioFocusChange focusGain);
}

वॉल्यूम ग्रुप को म्यूट किया जा रहा है

Android 12 पर, वॉल्यूम ग्रुप म्यूट करने की सुविधा लॉन्च की गई, ताकि जो व्यक्ति के ऑडियो इंटरैक्शन के दौरान, म्यूट को ज़्यादा अच्छे से कंट्रोल करने की सुविधा देते हैं. यह इससे ऑडियो कंट्रोल एचएएल को कार से बीच में आने वाले म्यूट इवेंट की जानकारी मिलती है ऑडियो सेवा.

यह सुविधा चालू करने के लिए, OEM को audioUseCarVolumeGroupMuting कॉन्फ़िगरेशन सेट करना होगा कार सेवा config.xml में true के लिए:

<!-- Configuration to enable muting of individual volume groups.
If this is set to false, muting of individual volume groups is disabled,
instead muting will toggle master mute. If this is set to true, car volume
group muting is enabled and each individual volume group can be muted separately. -->
<bool name="audioUseCarVolumeGroupMuting">true</bool>

Android 13 से पहले के वर्शन में, कॉन्फ़िगरेशन को ओवरराइट करना पड़ता था रनटाइम रिसॉर्स ओवरले के साथ packages/services/Car/service/res/values/config.xml (ज़्यादा जानने के लिए, यह देखें संसाधन की मदद से बिल्ड को पसंद के मुताबिक बनाना ओवरले). Android से 13, रनटाइम रिसॉर्स ओवरले का इस्तेमाल करके, कॉन्फ़िगरेशन मान. ज़्यादा जानने के लिए, किसी ऐप्लिकेशन के संसाधनों का मान बदलना देखें रनटाइम पर.

सिस्टम ऐप्लिकेशन यह तय कर सकते हैं कि सुविधा चालू है या नहीं. ऐसा करने के लिए, CarAudioManager#isAudioFeatureEnabled एपीआई. पास किया गया पैरामीटर CarAudioManager.AUDIO_FEATURE_VOLUME_GROUP_MUTING कॉन्स्टेंट. तरीका वापस करने का तरीका अगर डिवाइस पर सुविधा चालू है, तो true या false.

audioUseCarVolumeGroupMuting सुविधा को चालू करने के अलावा, एआईडीएल ऑडियो कंट्रोल HAL को वॉल्यूम ग्रुप को म्यूट करने की प्रक्रिया को लागू करना होगा:

interface IAudioControl {
       /**
       *   Notifies HAL of changes in output devices that the HAL should apply
       *   muting to.
       *
       *   This will be called in response to changes in audio mute state for each
       *   volume group and will include a {@link MutingInfo} object per audio
       *   zone that experienced a mute state event.
       *
       *   @param mutingInfos an array of {@link MutingInfo} objects for the audio
       *   zones where audio mute state has changed.
       */
       oneway void onDevicesToMuteChange(in MutingInfo[] mutingInfos);
}

जहां म्यूट करने से जुड़ी जानकारी में, ऑडियो सिस्टम से जुड़ी ज़रूरी जानकारी शामिल होती है:

parcelable MutingInfo {
       /**
       *   ID of the associated audio zone
       */
       int zoneId;
       /**
       *   List of addresses for audio output devices that should be muted.
       */
       String[] deviceAddressesToMute;
       /**
       *   List of addresses for audio output devices that were previously be
       *   muted and should now be unmuted.
       */
       String[] deviceAddressesToUnmute;
}

AAOS में म्यूट करने के दो अलग-अलग तरीके हैं. ये तरीके इन पर आधारित हैं:

  • ऑडियो का इस्तेमाल करने वाले मुख्य इवेंट KEYCODE_धुंध_MUTE.

  • कार ऑडियो मैनेजर म्यूट एपीआई का इस्तेमाल करके सीधे कार ऑडियो सेवा को कॉल करना, CarAudioManager#setVolumeGroupMute.

इस सेटिंग के चालू होने पर, ऑडियो कंट्रोल एचएएल के लिए दोनों तरीके कॉल को म्यूट करते हैं.

कार की ऑडियो डकिंग

Android 12 में, एक ही समय पर चलने वाले वीडियो को कंट्रोल करने के लिए, कार में ऑडियो डकिंग को लॉन्च किया गया ऑडियो स्ट्रीम चलाना. इससे OEM अपनी डकिंग को लागू कर सकते हैं कार के फ़िज़िकल ऑडियो कॉन्फ़िगरेशन और मौजूदा प्लेबैक के आधार पर व्यवहार कार की ऑडियो सेवा से तय होता है.

डकिंग का तरीका, ऑडियो फ़ोकस स्टैक में हुए बदलावों पर आधारित है. जब भी किसी फ़ोकस में बदलाव होता है (फ़ोकस अनुरोध किया जा सकता है या फ़ोकस छोड़ दिया गया हो), ऑडियो कंट्रोल एचएएल को सूचना दी जाती है. कार वॉल्यूम ग्रुप को म्यूट करने की सुविधा की तरह, कार ऑडियो डकिंग को audioUseHalDuckingSignals कॉन्फ़िगरेशन फ़्लैग की मदद से चालू किया जा सकता है:

<!-- Configuration to enable IAudioControl#onDevicesToDuckChange API to
inform HAL when to duck. If this is set to true, the API will receive signals
indicating which output devices to duck as well as what usages are currently
holding focus. If set to false, the API will not be called. -->
<bool name="audioUseHalDuckingSignals">true</bool>

इस सुविधा को चालू करने के लिए, एआईडीएल ऑडियो कंट्रोल एचएएल को कार की ऑडियो सेवा से मिले सिग्नल के साथ लॉजिक:

interface IAudioControl {
       /**
       *   Notifies HAL of changes in output devices that the HAL should apply
       *   ducking to.
       *
       *   This will be called in response to changes in audio focus, and will
       *   include a {@link DuckingInfo} object per audio zone that experienced
       *   a change in audo focus.
       *
       *   @param duckingInfos an array of {@link DuckingInfo} objects for the
       *   audio zones where audio focus has changed.
       */
       oneway void onDevicesToDuckChange(in DuckingInfo[] duckingInfos);
}

ऑडियो डकिंग में ऑडियो सिस्टम से जुड़ी काम की जानकारी शामिल होती है जानकारी:

parcelable DuckingInfo {
       /**
       *   ID of the associated audio zone
       */
       int zoneId;
       /**
       *   List of addresses for audio output devices that should be ducked.
       */
       String[] deviceAddressesToDuck;
       /**
       *   List of addresses for audio output devices that were previously be
       *   ducked and should now be unducked.
       */
       String[] deviceAddressesToUnduck;
       /**
       *   List of usages currently holding focus for this audio zone.
       */
       String[] usagesHoldingFocus;
}

डिवाइस के पतों में मौजूद कार के ऑडियो कॉन्फ़िगरेशन की जानकारी के अलावा से (अन)डक करने के लिए, डकिंग जानकारी में यह जानकारी भी शामिल होती है कि कौन सा ऑडियो एट्रिब्यूट के इस्तेमाल में फ़ोकस बनाए रखा गया है. इस डेटा का मकसद, जानकारी देना वह ऑडियो सिस्टम जिसका इस्तेमाल करके ऑडियो एट्रिब्यूट का इस्तेमाल किया जा रहा है.

ऐसा इसलिए ज़रूरी है, क्योंकि कार के ऑडियो कॉन्फ़िगरेशन में कई ऑडियो अलग-अलग एट्रिब्यूट के बिना, एक ही डिवाइस को एट्रिब्यूट जोड़े जा सकते हैं है, तो यह नहीं पता चलता कि कौनसे इस्तेमाल चालू हैं.

एआईडीएल ऑडियो कंट्रोल एचएएल 2.0

एपीआई अपडेट करने और नई सुविधाएं उपलब्ध कराने के लिए, एआईडीएल ऑडियो कंट्रोल एचएएल को Android 13 के 2.0 वर्शन में अपडेट किया गया था:

  • PlaybackTrackMetadata की मदद से ऑडियो फ़ोकस
  • ऑडियो गेन कॉलबैक

प्लेबैक मेटाडेटा की जानकारी android.hardware.audio.common में इस तरह से दी गई है:

parcelable PlaybackTrackMetadata {
       AudioUsage usage = INVALID;
       AudioContentType contentType = UNKNOWN;
       float gain;
       AudioChannelLayout channelMask;
       AudioDevice sourceDevice;
       String[] tags;
}

एआईडीएल ऑडियो कंट्रोल वर्शन 1.0 की बाकी सभी सुविधाएं पहले की तरह ही काम करती हैं. इस्तेमाल किया गया. एक अपवाद, ऑडियो फ़ोकस बदलने के तरीके से जुड़ा है. इस बारे में यहां बताया गया है ऑडियो फ़ोकस बदलने का तरीका पर.

प्लेबैक ट्रैक मेटाडेटा की मदद से, ऑडियो कंट्रोल का फ़ोकस

ऑडियो सिस्टम को एचएएल के नीचे ज़्यादा जानकारी दिखाने के लिए, अपडेट अब सार्वजनिक तौर पर दिखते हैं PlaybackTrackMetadata. खास तौर पर, ऑडियो कंट्रोल एचएएल को नया तरीका:

interface IAudioControl {
       /**
       *   Notifies HAL of changes in audio focus status for focuses requested
       *   or abandoned by the HAL.
       *
       *   The HAL is not required to wait for a callback of AUDIOFOCUS_GAIN
       *   before playing audio, nor is it required to stop playing audio in the
       *   event of a AUDIOFOCUS_LOSS callback is received.
       *
       *   @param playbackMetaData The output stream metadata associated with
       *    the focus request
       *   @param zoneId The identifier for the audio zone that the HAL is
       *    playing the stream in
       *   @param focusChange the AudioFocusChange that has occurred.
       */
       oneway void onAudioFocusChangeWithMetaData(
       in PlaybackTrackMetadata playbackMetaData, in int zoneId,
       in AudioFocusChange focusChange);
}

इससे मिलता-जुलता, इसी तरह का बदलाव IFocusListener में किया गया है:

       /**
       *   Called to indicate that the audio output stream associated with
       *   {@link android.hardware.audio.common.PlaybackTrackMetadata} is
       *   abandoning focus as playback has stopped.
       *
       *   @param playbackMetaData The output stream metadata associated with
       *    the focus request
       *   @param zoneId The identifier for the audio zone that the HAL
       *    abandoning focus
       */
       oneway void abandonAudioFocusWithMetaData(
       in PlaybackTrackMetadata playbackMetaData, in int zoneId);
       /**
       *   Called to indicate that the audio output stream associated with
       *   {@link android.hardware.audio.common.PlaybackTrackMetadata} has taken
       *   the focus as playback is starting for the corresponding stream.
       *
       *   @param playbackMetaData The output stream metadata associated with
       *    the focus request
       *   @param zoneId The identifier for the audio zone that the HAL
       *    abandoning focus
       *   @param focusGain The focus type requested.
       */
       oneway void requestAudioFocusWithMetaData(
       in PlaybackTrackMetadata playbackMetaData, in int zoneId,
       in AudioFocusChange focusGain);
}

ऑडियो फ़ोकस बदलने का तरीका

फ़ोकस से जुड़ी ऊपर बताई गई कार्रवाइयां, ऑडियो में बताई गई कार्रवाइयों की तरह ही काम करती हैं एचएएल से मिला फ़ोकस करने का अनुरोध पर जाएं. सिर्फ़ प्लेबैक ट्रैक के मेटाडेटा में ज़्यादा कॉन्टेंट है और ऑडियो एट्रिब्यूट के इस्तेमाल की जानकारी. आम तौर पर, जब तक कि प्लेबैक ट्रैक मेटाडेटा से मिली जानकारी की ज़रूरत है, अपडेट किया गया Android कंट्रोल के तौर पर HAL पिछले तरीकों का इस्तेमाल करना जारी रख सकता है.

अगर एचएएल डेवलपर ने IAudioControl#onAudioFocusChangeWithMetaData, इस तरीके से नतीजे मिलने चाहिए वर्शन वाले इंटरफ़ेस का इस्तेमाल करना बताए गए तरीके की वजह से UNKNOWN_TRANSACTION गड़बड़ी हुई है तरीके.

ऑडियो सेवा पहले onAudioFocusChangeWithMetaData को कॉल करती है और इसके बाद, onAudioFocusChange तरीके से फिर से कोशिश करता है, अगर UNKNOWN_TRANSACTION गड़बड़ी के नतीजे.

प्लेबैक ट्रैक मेटाडेटा के साथ, कार में ऑडियो डकिंग

एआईडीएल ऑडियो कंट्रोल एचएएल के वर्शन 2.0 में, प्लेबैक ट्रैक का मेटाडेटा जोड़ा गया ऑडियो डकिंग की जानकारी:

parcelable DuckingInfo {
       /**
       *   ID of the associated audio zone
       */
       int zoneId;
       /**
       *   List of addresses for audio output devices that should be ducked.
       */
       String[] deviceAddressesToDuck;
       /**
       *   List of addresses for audio output devices that were previously be
       *   ducked and should now be unducked.
       */
       String[] deviceAddressesToUnduck;
       /**
       *   List of usages currently holding focus for this audio zone.
       */
       String[] usagesHoldingFocus;
       /**
       *   List of output stream metadata associated with the current focus
       *   holder for this audio zone
       */
       @nullable PlaybackTrackMetadata[] playbackMetaDataHoldingFocus;
}

usagesHoldingFocus के इस्तेमाल पर रोक लगा दी गई है. डेवलपर को अब ऑडियो एट्रिब्यूट के इस्तेमाल और दूसरी चीज़ों का पता लगाने के लिए, playbackMetaDataHoldingFocus ऑडियो जानकारी. हालांकि, usagesHoldingFocus पैरामीटर में अब भी जब तक यह विकल्प औपचारिक रूप से नहीं हटाया जाता, तब तक ज़रूरी जानकारी सबमिट करें.

ऑडियो गेन कॉलबैक

Android में एचएएल के नीचे ऑडियो में बदलाव करके, उसे AAOS में बेहतर तरीके से दिखाने के लिए 13. हमने एक ऐसा तरीका जोड़ा है जिसकी मदद से आप बातचीत कर सकते हैं ऑडियो गेन कार के ऑडियो सिस्टम से कार की ऑडियो सेवा में बदल जाता है. कॉन्टेंट बनाने यह तरीका बताता है कि ऑडियो गेन वॉल्यूम इंडेक्स में बदलाव क्यों हुआ है. फ़ायदा बदल गया था:

  • ब्लॉक या म्यूट की गई पाबंदियां
  • सीमाओं से जुड़ी पाबंदियां
  • ध्यान देने से जुड़ी पाबंदियां

ये बदलाव एचएएल के नीचे मौजूद इन पाबंदियों को उपयोगकर्ता को सूचित करने के लिए सिस्टम के यूज़र इंटरफ़ेस (यूआई) ऐप्लिकेशन पर भेजना चाहते हैं. बाद वाला हिस्सा, संभावित सिस्टम यूज़र इंटरफ़ेस (यूआई) के संपर्क में आने पर, इसे Android 14 में, सिस्टम के यूज़र इंटरफ़ेस (यूआई) वाले ऐप्लिकेशन को यह जानकारी आसानी से मिल जाती है एक वॉल्यूम ग्रुप की जानकारी के कॉलबैक मैकेनिज़्म के ज़रिए की जाएगी.

ऑडियो कंट्रोल HAL API, गेन कॉलबैक को इस तरह रजिस्टर करता है:

interface IAudioControl {
       /**
       *   Registers callback to be used by HAL for reporting unexpected gain(s)
       *    changed and the reason(s) why.
       *
       *   @param callback The {@link IAudioGainCallback}.
       */
       oneway void registerGainCallback(in IAudioGainCallback callback);
}

IAudioGainCallback को इस तरह परिभाषित किया गया है:

interface IAudioGainCallback {
       /**
       *   Used to indicate that one or more audio device port gains have changed,
       *   i.e. initiated by HAL, not by CarAudioService.
       *   This is the counter part of the
       *   {@link onDevicesToDuckChange}, {@link onDevicesToMuteChange} and,
       *   {@link setAudioDeviceGainsChanged} APIs.
       *
       *   @param reasons List of reasons that triggered the given gains changed.
       *   @param gains List of gains affected by the change.
       */
       void onAudioDeviceGainsChanged(in Reasons[] reasons,
       in AudioGainConfigInfo[] gains);
}

जैसा कि एपीआई दस्तावेज़ में हाइलाइट किया गया है, गेन कॉलबैक को ऑडियो कंट्रोल एचएएल के लिए कार ऑडियो सेवा. जब एपीआई को ऑडियो कंट्रोल एचएएल, कार की ऑडियो सेवा उससे जुड़ी कार्रवाई के साथ जवाब देती है (जैसे, ब्लॉक करना, सीमित करना या गेन इंडेक्स को जोड़ना) .

एचएएल यह तय करता है कि एपीआई को कब कॉल किया जाएगा. यह मुख्य रूप से इंडेक्स स्टेटस पाना. कानूनी समझौते की शर्तों के हिसाब से, कार का ऑडियो सिस्टम को ज़रूरी कार्रवाई करनी चाहिए और जानकारी की रिपोर्ट करने के लिए कॉलबैक का इस्तेमाल करना चाहिए कार ऑडियो सेवा की ज़रूरत पड़ेगी. उदाहरण के लिए, यूज़र इंटरफ़ेस (यूआई) दिखाने के लिए उपयोगकर्ता को कोई परेशानी नहीं है.

एआईडीएल ऑडियो कंट्रोल एचएएल 3.0

Android 14 का ऑडियो कंट्रोल एचएएल वर्शन है एपीआई को अपडेट करने के लिए, वर्शन 3.0 में अपडेट किया गया. इससे ऑडियो की क्वालिटी को बेहतर बनाया जा सकता है इंडेक्स फ़ंक्शन का इस्तेमाल करना. ऑडियो कंट्रोल HAL API की मदद से, ऑडियो सेवा IModuleChangeCallback को सेट और अनसेट करें:

interface IAudioControl {
       /**
       *   Sets callback with HAL for notifying changes to hardware module
       *   (that is: {@link android.hardware.audio.core.IModule}) configurations.
       *
       *   @param callback The {@link IModuleChangeCallback} interface to use
       *    use when new updates are available for
       */
       void setModuleChangeCallback(in IModuleChangeCallback callback);
       /**
       *   Clears module change callback
       */
       void clearModuleChangeCallback();
}

कार की ऑडियो सेवा के ज़रिए setModuleChangeCallback को तब रजिस्टर किया जाता है, जब तब सेवा शुरू होती है या जब कोई गड़बड़ी ठीक हो जाती है. उदाहरण के लिए, एक ऑडियो कंट्रोल कार की ऑडियो सेवा को एचएएल बाइंडर की मौत की सूचना मिली. ऑडियो कंट्रोल एचएएल को लागू करने के दौरान, किसी मौजूदा मॉड्यूल में किए गए बदलाव कॉलबैक को बदल देना चाहिए तो एपीआई को कॉल किया जाता है.

clearModuleChangeCallback API के लिए, लागू करने की प्रक्रिया में पहले से मौजूद कॉलबैक का इस्तेमाल करें या मौजूद न होने पर कुछ न करें. यह उन लोगों के लिए अच्छा है जो कॉलबैक के लिए, डेथ ऑब्ज़र्वर रजिस्टर करने के लिए ऑडियो कंट्रोल को लागू करना और फिर बाइंडर की मृत्यु होने पर कॉलबैक को साफ़ करने के लिए.

IModuleChangeCallback को इस तरह परिभाषित किया गया है:

oneway interface IModuleChangeCallback {
       /**
       *   Used to indicate that one or more {@link AudioPort} configs have
       *   changed. Implementations MUST return at least one AudioPort.
       *
       *   @param audioPorts list of {@link AudioPort} that are updated
       */
       void onAudioPortsChanged(in AudioPort[] audioPorts);
}

जब कार की ऑडियो सेवा ने मॉड्यूल में बदलाव कॉलबैक को रजिस्टर किया हो, तो onAudioPortChanged एपीआई की मदद से, ऑडियो पोर्ट में किए जाने वाले बदलाव पाने के लिए तैयार है. कॉन्टेंट बनाने एपीआई का इस्तेमाल तब किया जा सकता है, जब कॉलबैक रजिस्टर किया गया है. डाइनैमिक गेन में अन्य बदलावों के लिए, एपीआई को कॉल किया जा सकता है कभी भी. संबंधित बदलाव लागू कर दिए जाते हैं और कार ऑडियो सेवा अपडेट कर दी जाती है भुगतान करते हैं.