Remove the option to disable the PCM audio provider
This commit is contained in:
parent
3d76d583e1
commit
7dd764db6b
3 changed files with 1 additions and 7 deletions
|
@ -154,7 +154,7 @@ std::unique_ptr<AudioProvider> AudioProviderFactory::GetProvider(agi::fs::path c
|
||||||
});
|
});
|
||||||
|
|
||||||
// Try a PCM provider first
|
// Try a PCM provider first
|
||||||
if (!provider && !OPT_GET("Provider/Audio/PCM/Disable")->GetBool())
|
if (!provider)
|
||||||
provider = creator.try_create("PCM audio provider", [&]() { return CreatePCMAudioProvider(filename); });
|
provider = creator.try_create("PCM audio provider", [&]() { return CreatePCMAudioProvider(filename); });
|
||||||
|
|
||||||
if (!provider) {
|
if (!provider) {
|
||||||
|
|
|
@ -324,9 +324,6 @@
|
||||||
},
|
},
|
||||||
"FFmpegSource" : {
|
"FFmpegSource" : {
|
||||||
"Decode Error Handling" : "stop"
|
"Decode Error Handling" : "stop"
|
||||||
},
|
|
||||||
"PCM" : {
|
|
||||||
"Disable" : false
|
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"Avisynth" : {
|
"Avisynth" : {
|
||||||
|
|
|
@ -324,9 +324,6 @@
|
||||||
},
|
},
|
||||||
"FFmpegSource" : {
|
"FFmpegSource" : {
|
||||||
"Decode Error Handling" : "stop"
|
"Decode Error Handling" : "stop"
|
||||||
},
|
|
||||||
"PCM" : {
|
|
||||||
"Disable" : false
|
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"Avisynth" : {
|
"Avisynth" : {
|
||||||
|
|
Loading…
Reference in a new issue