diff options
author | Max Kellermann <max@duempel.org> | 2009-03-20 15:47:50 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2009-03-20 15:47:50 +0100 |
commit | e6c753a474bcf1d81127f74762f8b7f913dd3160 (patch) | |
tree | 37bce87b2de1f2ee7d40c28074a53c423c7a6789 /src/output_internal.h | |
parent | 67e65a7959be0e3dee2fd2023a2c23217c50c1d8 (diff) | |
download | mpd-e6c753a474bcf1d81127f74762f8b7f913dd3160.tar.gz mpd-e6c753a474bcf1d81127f74762f8b7f913dd3160.tar.xz mpd-e6c753a474bcf1d81127f74762f8b7f913dd3160.zip |
output: convert audio_output.config_audio_format to boolean
The config_audio_format used to contain the configured audio format,
which is copied to out_audio_format. Let's convert the former to a
boolean, which indicates whether out_audio_format was already set.
This simplifies some code and saves a few bytes.
Diffstat (limited to '')
-rw-r--r-- | src/output_internal.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/output_internal.h b/src/output_internal.h index 017744a81..3ec0485b2 100644 --- a/src/output_internal.h +++ b/src/output_internal.h @@ -53,6 +53,12 @@ struct audio_output { void *data; /** + * This flag is true, when the audio_format of this device is + * configured in mpd.conf. + */ + bool config_audio_format; + + /** * Has the user enabled this device? */ bool enabled; @@ -83,12 +89,6 @@ struct audio_output { */ struct audio_format out_audio_format; - /** - * The audio_format which was configured. Only set if - * convertAudioFormat is true. - */ - struct audio_format config_audio_format; - struct pcm_convert_state convert_state; /** |