Signed-off-by: Claudio Cambra <developer@claudiocambra.com>
@ -216,7 +216,7 @@ static int Open(vlc_object_t *p_this)
return VLC_EGENERIC;
}
if ([device isInUseByAnotherApplication]) {
if (device.isInUseByAnotherApplication) {
msg_Err(p_demux, "Capture device is exclusively in use by another application");
@ -402,7 +402,7 @@ static int Control(demux_t *p_demux, int i_query, va_list args)
AVCaptureDevice *device = _device;
if ( [device isInUseByAnotherApplication] == YES )
if ( device.isInUseByAnotherApplication == YES )
{
msg_Err(_demux, "default capture device is exclusively in use by another application");
return nil;