KsPinReleaseControl - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
// ks.h

void KsPinReleaseControl(
  [in] PKSPIN Pin
);
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (nf-ks-kspinreleasecontrol)

KsPinReleaseControl function

Description

The KsPinReleaseControl function releases the control mutex for the AVStream pin specified by Pin.

Parameters

Pin [in]

A pointer to a KSPIN structure representing the pin for which to release the control mutex.

Remarks

The pin control mutex is the same mutex that is used by Pin's parent. In other words, the pin control mutex is the filter control mutex of Pin's parent. For more information, see Mutexes in AVStream.

Note that this function is an inline call to KsReleaseControl. Minidrivers manipulating a pin should call this function instead of calling KsReleaseControl directly.

See also

KsAcquireControl

KsPinAcquireControl

KsReleaseControl