<!--
{
  "availability" : [
    "macCatalyst: 13.1.0 - 13.1.0",
    "macOS: 10.0.0 - 10.6.0"
  ],
  "documentType" : "symbol",
  "framework" : "CoreAudio",
  "identifier" : "/documentation/CoreAudio/AudioDeviceRemovePropertyListener",
  "metadataVersion" : "0.1.0",
  "role" : "Function",
  "symbol" : {
    "kind" : "Function",
    "modules" : [
      "Core Audio"
    ],
    "preciseIdentifier" : "c:@F@AudioDeviceRemovePropertyListener"
  },
  "title" : "AudioDeviceRemovePropertyListener"
}
-->

# AudioDeviceRemovePropertyListener

```
extern OSStatus AudioDeviceRemovePropertyListener(AudioDeviceID inDevice, UInt32 inChannel, Boolean isInput, AudioDevicePropertyID inPropertyID, AudioDevicePropertyListenerProc inProc);
```

## Parameters

`inDevice`

The AudioDevice with whom to unregister the listener.

`inChannel`

The channel of the property to unregister from.

`isInput`

Which section of the AudioDevice to unregister from.

`inPropertyID`

The AudioDevicePropertyID of the property to stop listening to.

`inProc`

AudioDevicePropertyListenerProc to unregister.

## Return Value

An OSStatus indicating success or failure.

## Discussion

\abstract Unregisters the given AudioDevicePropertyListenerProc from receiving
notifications when the given property changes.
\discussion Note that the same functionality is provided by
AudioObjectRemovePropertyListener in conjunction with
AudioObjectPropertyListenerProc.

---

Copyright &copy; 2026 Apple Inc. All rights reserved. | [Terms of Use](https://www.apple.com/legal/internet-services/terms/site.html) | [Privacy Policy](https://www.apple.com/privacy/privacy-policy)