pcm/Dsd*: add "noexcept"

This commit is contained in:
Max Kellermann
2017-10-26 12:26:50 +02:00
parent 54dd1ad09b
commit ae67f44c6e
4 changed files with 12 additions and 8 deletions

View File

@@ -31,6 +31,7 @@ class PcmBuffer;
* Convert DSD_U8 to DSD_U16 (native endian, oldest bits in MSB).
*/
ConstBuffer<uint16_t>
Dsd8To16(PcmBuffer &buffer, unsigned channels, ConstBuffer<uint8_t> src);
Dsd8To16(PcmBuffer &buffer, unsigned channels,
ConstBuffer<uint8_t> src) noexcept;
#endif