output: move functions into the AudioOutput struct

This commit is contained in:
Max Kellermann
2014-01-28 11:39:12 +01:00
parent cb7366f472
commit 4657a3bd0f
25 changed files with 290 additions and 338 deletions

View File

@@ -61,7 +61,7 @@ struct SolarisOutput {
:base(solaris_output_plugin) {}
bool Initialize(const config_param &param, Error &error_r) {
return ao_base_init(&base, param, error_r);
return base.Configure(param, error_r);
}
};