diff options
Diffstat (limited to 'media/audio/openbsd/audio_manager_openbsd.cc')
-rw-r--r-- | media/audio/openbsd/audio_manager_openbsd.cc | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/media/audio/openbsd/audio_manager_openbsd.cc b/media/audio/openbsd/audio_manager_openbsd.cc index acdcea4..0f4314c 100644 --- a/media/audio/openbsd/audio_manager_openbsd.cc +++ b/media/audio/openbsd/audio_manager_openbsd.cc @@ -15,6 +15,8 @@ #include <fcntl.h> +namespace media { + // Maximum number of output streams that can be open simultaneously. static const int kMaxOutputStreams = 50; @@ -103,3 +105,5 @@ AudioOutputStream* AudioManagerOpenBSD::MakeOutputStream( AudioManager* CreateAudioManager() { return new AudioManagerOpenBSD(); } + +} // namespace media |