Remove the option to disable the PCM audio provider

This commit is contained in:
Thomas Goyne 2014-03-23 16:49:03 -07:00
parent 3d76d583e1
commit 7dd764db6b
3 changed files with 1 additions and 7 deletions

View file

@ -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) {

View file

@ -324,9 +324,6 @@
}, },
"FFmpegSource" : { "FFmpegSource" : {
"Decode Error Handling" : "stop" "Decode Error Handling" : "stop"
},
"PCM" : {
"Disable" : false
} }
}, },
"Avisynth" : { "Avisynth" : {

View file

@ -324,9 +324,6 @@
}, },
"FFmpegSource" : { "FFmpegSource" : {
"Decode Error Handling" : "stop" "Decode Error Handling" : "stop"
},
"PCM" : {
"Disable" : false
} }
}, },
"Avisynth" : { "Avisynth" : {