diff options
author | Max Kellermann <max@musicpd.org> | 2018-01-02 09:59:22 +0100 |
---|---|---|
committer | Max Kellermann <max@musicpd.org> | 2018-01-02 09:59:22 +0100 |
commit | d2358b42b6d121da2b7b260607b7162c586a5f3a (patch) | |
tree | 33863a1d4ebfe201455f825e8b8786d2781a5287 /src/output/Source.hxx | |
parent | e387d94ff1262425bb24a25513eb74195b814f3c (diff) |
output/Source: drop the "_instance" suffix from variable names
Diffstat (limited to 'src/output/Source.hxx')
-rw-r--r-- | src/output/Source.hxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/output/Source.hxx b/src/output/Source.hxx index 87fe1db65..1b26a3378 100644 --- a/src/output/Source.hxx +++ b/src/output/Source.hxx @@ -77,14 +77,14 @@ class AudioOutputSource { * The replay_gain_filter_plugin instance of this audio * output. */ - std::unique_ptr<Filter> replay_gain_filter_instance; + std::unique_ptr<Filter> replay_gain_filter; /** * The replay_gain_filter_plugin instance of this audio * output, to be applied to the second chunk during * cross-fading. */ - std::unique_ptr<Filter> other_replay_gain_filter_instance; + std::unique_ptr<Filter> other_replay_gain_filter; /** * The buffer used to allocate the cross-fading result. @@ -100,7 +100,7 @@ class AudioOutputSource { * The filter object of this audio output. This is an * instance of chain_filter_plugin. */ - std::unique_ptr<Filter> filter_instance; + std::unique_ptr<Filter> filter; /** * The #MusicChunk currently being processed (see |