Commit 96ff6b9b authored by Max Kellermann's avatar Max Kellermann

pcm/Dop: remove redundant `inline` keywords

parent fd5e74db
...@@ -24,15 +24,13 @@ ...@@ -24,15 +24,13 @@
#include <assert.h> #include <assert.h>
constexpr static constexpr uint32_t
static inline uint32_t
pcm_two_dsd_to_dop_marker1(uint8_t a, uint8_t b) noexcept pcm_two_dsd_to_dop_marker1(uint8_t a, uint8_t b) noexcept
{ {
return 0xff050000 | (a << 8) | b; return 0xff050000 | (a << 8) | b;
} }
constexpr static constexpr uint32_t
static inline uint32_t
pcm_two_dsd_to_dop_marker2(uint8_t a, uint8_t b) noexcept pcm_two_dsd_to_dop_marker2(uint8_t a, uint8_t b) noexcept
{ {
return 0xfffa0000 | (a << 8) | b; return 0xfffa0000 | (a << 8) | b;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment