| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef MEDIA_AUDIO_LINUX_ALSA_UTIL_H_ | 5 #ifndef MEDIA_AUDIO_LINUX_ALSA_UTIL_H_ |
| 6 #define MEDIA_AUDIO_LINUX_ALSA_UTIL_H_ | 6 #define MEDIA_AUDIO_LINUX_ALSA_UTIL_H_ |
| 7 | 7 |
| 8 #include <alsa/asoundlib.h> | 8 #include <alsa/asoundlib.h> |
| 9 #include <string> | 9 #include <string> |
| 10 | 10 |
| (...skipping 27 matching lines...) Expand all Loading... |
| 38 void CloseMixer(media::AlsaWrapper* wrapper, | 38 void CloseMixer(media::AlsaWrapper* wrapper, |
| 39 snd_mixer_t* mixer, | 39 snd_mixer_t* mixer, |
| 40 const std::string& device_name); | 40 const std::string& device_name); |
| 41 | 41 |
| 42 snd_mixer_elem_t* LoadCaptureMixerElement(media::AlsaWrapper* wrapper, | 42 snd_mixer_elem_t* LoadCaptureMixerElement(media::AlsaWrapper* wrapper, |
| 43 snd_mixer_t* mixer); | 43 snd_mixer_t* mixer); |
| 44 | 44 |
| 45 } // namespace alsa_util | 45 } // namespace alsa_util |
| 46 | 46 |
| 47 #endif // MEDIA_AUDIO_LINUX_ALSA_UTIL_H_ | 47 #endif // MEDIA_AUDIO_LINUX_ALSA_UTIL_H_ |
| OLD | NEW |