diff options
author | Max Kellermann <max@duempel.org> | 2013-08-03 21:00:50 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2013-08-03 21:37:56 +0200 |
commit | d1e7b4e38136f9342aad76c685a13adf0e69f869 (patch) | |
tree | 49643b937ddfe735511b566a71398da5a945d7aa /src/pcm/PcmExport.hxx | |
parent | 67f591a9ce60651da41afc499bd9a22e25314e35 (diff) | |
download | mpd-d1e7b4e38136f9342aad76c685a13adf0e69f869.tar.gz mpd-d1e7b4e38136f9342aad76c685a13adf0e69f869.tar.xz mpd-d1e7b4e38136f9342aad76c685a13adf0e69f869.zip |
audio_format: convert to C++
Diffstat (limited to 'src/pcm/PcmExport.hxx')
-rw-r--r-- | src/pcm/PcmExport.hxx | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/pcm/PcmExport.hxx b/src/pcm/PcmExport.hxx index e420493f0..bd18c0534 100644 --- a/src/pcm/PcmExport.hxx +++ b/src/pcm/PcmExport.hxx @@ -22,9 +22,9 @@ #include "check.h" #include "PcmBuffer.hxx" -#include "audio_format.h" +#include "AudioFormat.hxx" -struct audio_format; +struct AudioFormat; /** * An object that handles export of PCM samples to some instance @@ -61,8 +61,8 @@ struct PcmExport { /** * Convert DSD to DSD-over-USB? Input format must be - * SAMPLE_FORMAT_DSD and output format must be - * SAMPLE_FORMAT_S24_P32. + * SampleFormat::DSD and output format must be + * SampleFormat::S24_P32. */ bool dsd_usb; @@ -94,14 +94,14 @@ struct PcmExport { * * @param channels the number of channels; ignored unless dsd_usb is set */ - void Open(enum sample_format sample_format, unsigned channels, + void Open(SampleFormat sample_format, unsigned channels, bool dsd_usb, bool shift8, bool pack, bool reverse_endian); /** * Calculate the size of one output frame. */ gcc_pure - size_t GetFrameSize(const struct audio_format &audio_format) const; + size_t GetFrameSize(const AudioFormat &audio_format) const; /** * Export a PCM buffer. |