diff options
| author | jacqueline <me@jacqueline.id.au> | 2022-11-07 12:20:20 +1100 |
|---|---|---|
| committer | jacqueline <me@jacqueline.id.au> | 2022-11-07 12:20:20 +1100 |
| commit | 675d52c9a5bd32c18e5c7f1588965d2238add9c2 (patch) | |
| tree | d36358f39fbc9347737b46d65e9ec37e6c1fb63c /src/drivers/playback.cpp | |
| parent | 28d73ad8660e27f9c7b20b6e978d3d0c412dec00 (diff) | |
| download | tangara-fw-675d52c9a5bd32c18e5c7f1588965d2238add9c2.tar.gz | |
use a less fun but more descriptive namespace
Diffstat (limited to 'src/drivers/playback.cpp')
| -rw-r--r-- | src/drivers/playback.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/drivers/playback.cpp b/src/drivers/playback.cpp index 46dec680..89b1f7e1 100644 --- a/src/drivers/playback.cpp +++ b/src/drivers/playback.cpp @@ -15,7 +15,7 @@ static const char* kTag = "PLAYBACK"; static const i2s_port_t kI2SPort = I2S_NUM_0; -namespace gay_ipod { +namespace drivers { static audio_element_status_t status_from_the_void(void* status) { uintptr_t as_pointer_int = reinterpret_cast<uintptr_t>(status); @@ -243,4 +243,4 @@ auto DacAudioPlayback::volume() -> uint8_t { return volume_; } -} // namespace gay_ipod +} // namespace drivers |
