CoreAudio input takes priority over FFmpeg on 10.14.x and older

CQTexperiment
Christopher Snowhill 2022-01-09 17:05:10 -08:00
parent a1a85c502e
commit c8301a9868
2 changed files with 8 additions and 2 deletions

View File

@ -312,7 +312,10 @@ static SInt64 getSizeProc(void* clientData) {
+ (float)priority
{
if (@available(macOS 10.15, *))
return 1.0;
else
return 1.5;
}
- (NSDictionary *)properties

View File

@ -589,7 +589,10 @@ int lockmgr_callback(void ** mutex, enum AVLockOp op)
+ (float)priority
{
if (@available(macOS 10.15, *))
return 1.5;
else
return 1.0;
}