// ks.h
void KsPinReleaseControl(
[in] PKSPIN Pin
);
View the official Windows Driver Kit DDI referenceNo description available.
The KsPinReleaseControl function releases the control mutex for the AVStream pin specified by Pin.
Pin [in]A pointer to a KSPIN structure representing the pin for which to release the control mutex.
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.