audio_core: use nested namespaces

This commit is contained in:
tgsm 2019-02-17 23:41:48 -05:00
parent f409342ab5
commit a400e49338
13 changed files with 26 additions and 52 deletions

View file

@ -8,8 +8,7 @@
#include "audio_core/audio_types.h"
#include "common/common_types.h"
namespace AudioCore {
namespace Codec {
namespace AudioCore::Codec {
/// See: Codec::DecodeADPCM
struct ADPCMState {
@ -46,5 +45,4 @@ StereoBuffer16 DecodePCM8(const unsigned num_channels, const u8* const data,
*/
StereoBuffer16 DecodePCM16(const unsigned num_channels, const u8* const data,
const std::size_t sample_count);
} // namespace Codec
} // namespace AudioCore
} // namespace AudioCore::Codec