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
|
||||
if (!provider && !OPT_GET("Provider/Audio/PCM/Disable")->GetBool())
|
||||
if (!provider)
|
||||
provider = creator.try_create("PCM audio provider", [&]() { return CreatePCMAudioProvider(filename); });
|
||||
|
||||
if (!provider) {
|
||||
|
|
|
@ -324,9 +324,6 @@
|
|||
},
|
||||
"FFmpegSource" : {
|
||||
"Decode Error Handling" : "stop"
|
||||
},
|
||||
"PCM" : {
|
||||
"Disable" : false
|
||||
}
|
||||
},
|
||||
"Avisynth" : {
|
||||
|
|
|
@ -324,9 +324,6 @@
|
|||
},
|
||||
"FFmpegSource" : {
|
||||
"Decode Error Handling" : "stop"
|
||||
},
|
||||
"PCM" : {
|
||||
"Disable" : false
|
||||
}
|
||||
},
|
||||
"Avisynth" : {
|
||||
|
|
Loading…
Reference in a new issue