| 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_AUDIO_PARAMETERS_H_ | 5 #ifndef MEDIA_AUDIO_AUDIO_PARAMETERS_H_ |
| 6 #define MEDIA_AUDIO_AUDIO_PARAMETERS_H_ | 6 #define MEDIA_AUDIO_AUDIO_PARAMETERS_H_ |
| 7 | 7 |
| 8 #include "base/basictypes.h" | 8 #include "base/basictypes.h" |
| 9 #include "base/time/time.h" | 9 #include "base/time/time.h" |
| 10 #include "media/base/channel_layout.h" | 10 #include "media/base/channel_layout.h" |
| (...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 51 ECHO_CANCELLER = 0x1, | 51 ECHO_CANCELLER = 0x1, |
| 52 DUCKING = 0x2, // Enables ducking if the OS supports it. | 52 DUCKING = 0x2, // Enables ducking if the OS supports it. |
| 53 KEYBOARD_MIC = 0x4, | 53 KEYBOARD_MIC = 0x4, |
| 54 }; | 54 }; |
| 55 | 55 |
| 56 AudioParameters(); | 56 AudioParameters(); |
| 57 AudioParameters(Format format, ChannelLayout channel_layout, | 57 AudioParameters(Format format, ChannelLayout channel_layout, |
| 58 int sample_rate, int bits_per_sample, | 58 int sample_rate, int bits_per_sample, |
| 59 int frames_per_buffer); | 59 int frames_per_buffer); |
| 60 AudioParameters(Format format, ChannelLayout channel_layout, | 60 AudioParameters(Format format, ChannelLayout channel_layout, |
| 61 int input_channels, |
| 61 int sample_rate, int bits_per_sample, | 62 int sample_rate, int bits_per_sample, |
| 62 int frames_per_buffer, int effects); | 63 int frames_per_buffer, int effects); |
| 63 AudioParameters(Format format, ChannelLayout channel_layout, | 64 AudioParameters(Format format, ChannelLayout channel_layout, |
| 64 int channels, int sample_rate, int bits_per_sample, | 65 int channels, int input_channels, |
| 66 int sample_rate, int bits_per_sample, |
| 65 int frames_per_buffer, int effects); | 67 int frames_per_buffer, int effects); |
| 66 | 68 |
| 67 void Reset(Format format, ChannelLayout channel_layout, | 69 void Reset(Format format, ChannelLayout channel_layout, |
| 68 int channels, int sample_rate, int bits_per_sample, | 70 int channels, int input_channels, |
| 71 int sample_rate, int bits_per_sample, |
| 69 int frames_per_buffer); | 72 int frames_per_buffer); |
| 70 | 73 |
| 71 // Checks that all values are in the expected range. All limits are specified | 74 // Checks that all values are in the expected range. All limits are specified |
| 72 // in media::Limits. | 75 // in media::Limits. |
| 73 bool IsValid() const; | 76 bool IsValid() const; |
| 74 | 77 |
| 75 // Returns size of audio buffer in bytes. | 78 // Returns size of audio buffer in bytes. |
| 76 int GetBytesPerBuffer() const; | 79 int GetBytesPerBuffer() const; |
| 77 | 80 |
| 78 // Returns the number of bytes representing one second of audio. | 81 // Returns the number of bytes representing one second of audio. |
| 79 int GetBytesPerSecond() const; | 82 int GetBytesPerSecond() const; |
| 80 | 83 |
| 81 // Returns the number of bytes representing a frame of audio. | 84 // Returns the number of bytes representing a frame of audio. |
| 82 int GetBytesPerFrame() const; | 85 int GetBytesPerFrame() const; |
| 83 | 86 |
| 84 // Returns the duration of this buffer as calculated from frames_per_buffer() | 87 // Returns the duration of this buffer as calculated from frames_per_buffer() |
| 85 // and sample_rate(). | 88 // and sample_rate(). |
| 86 base::TimeDelta GetBufferDuration() const; | 89 base::TimeDelta GetBufferDuration() const; |
| 87 | 90 |
| 88 Format format() const { return format_; } | 91 Format format() const { return format_; } |
| 89 ChannelLayout channel_layout() const { return channel_layout_; } | 92 ChannelLayout channel_layout() const { return channel_layout_; } |
| 90 int sample_rate() const { return sample_rate_; } | 93 int sample_rate() const { return sample_rate_; } |
| 91 int bits_per_sample() const { return bits_per_sample_; } | 94 int bits_per_sample() const { return bits_per_sample_; } |
| 92 int frames_per_buffer() const { return frames_per_buffer_; } | 95 int frames_per_buffer() const { return frames_per_buffer_; } |
| 93 int channels() const { return channels_; } | 96 int channels() const { return channels_; } |
| 97 int input_channels() const { return input_channels_; } |
| 94 int effects() const { return effects_; } | 98 int effects() const { return effects_; } |
| 95 | 99 |
| 96 // Comparison with other AudioParams. | 100 // Comparison with other AudioParams. |
| 97 bool operator==(const AudioParameters& other) const { | 101 bool operator==(const AudioParameters& other) const { |
| 98 return format_ == other.format() && | 102 return format_ == other.format() && |
| 99 sample_rate_ == other.sample_rate() && | 103 sample_rate_ == other.sample_rate() && |
| 100 channel_layout_ == other.channel_layout() && | 104 channel_layout_ == other.channel_layout() && |
| 101 channels_ == other.channels() && | 105 channels_ == other.channels() && |
| 106 input_channels_ == other.input_channels() && |
| 102 bits_per_sample_ == other.bits_per_sample() && | 107 bits_per_sample_ == other.bits_per_sample() && |
| 103 frames_per_buffer_ == other.frames_per_buffer() && | 108 frames_per_buffer_ == other.frames_per_buffer() && |
| 104 effects_ == other.effects(); | 109 effects_ == other.effects(); |
| 105 } | 110 } |
| 106 | 111 |
| 107 private: | 112 private: |
| 108 // These members are mutable to support entire struct assignment. They should | 113 // These members are mutable to support entire struct assignment. They should |
| 109 // not be mutated individually. | 114 // not be mutated individually. |
| 110 Format format_; // Format of the stream. | 115 Format format_; // Format of the stream. |
| 111 ChannelLayout channel_layout_; // Order of surround sound channels. | 116 ChannelLayout channel_layout_; // Order of surround sound channels. |
| 112 int sample_rate_; // Sampling frequency/rate. | 117 int sample_rate_; // Sampling frequency/rate. |
| 113 int bits_per_sample_; // Number of bits per sample. | 118 int bits_per_sample_; // Number of bits per sample. |
| 114 int frames_per_buffer_; // Number of frames in a buffer. | 119 int frames_per_buffer_; // Number of frames in a buffer. |
| 115 | 120 |
| 116 int channels_; // Number of channels. Value set based on | 121 int channels_; // Number of channels. Value set based on |
| 117 // |channel_layout|. | 122 // |channel_layout|. |
| 123 int input_channels_; // Optional number of input channels. |
| 124 // Normally 0, but can be set to specify |
| 125 // synchronized I/O. |
| 118 int effects_; // Bitmask using PlatformEffectsMask. | 126 int effects_; // Bitmask using PlatformEffectsMask. |
| 119 }; | 127 }; |
| 120 | 128 |
| 121 // Comparison is useful when AudioParameters is used with std structures. | 129 // Comparison is useful when AudioParameters is used with std structures. |
| 122 inline bool operator<(const AudioParameters& a, const AudioParameters& b) { | 130 inline bool operator<(const AudioParameters& a, const AudioParameters& b) { |
| 123 if (a.format() != b.format()) | 131 if (a.format() != b.format()) |
| 124 return a.format() < b.format(); | 132 return a.format() < b.format(); |
| 125 if (a.channels() != b.channels()) | 133 if (a.channels() != b.channels()) |
| 126 return a.channels() < b.channels(); | 134 return a.channels() < b.channels(); |
| 135 if (a.input_channels() != b.input_channels()) |
| 136 return a.input_channels() < b.input_channels(); |
| 127 if (a.sample_rate() != b.sample_rate()) | 137 if (a.sample_rate() != b.sample_rate()) |
| 128 return a.sample_rate() < b.sample_rate(); | 138 return a.sample_rate() < b.sample_rate(); |
| 129 if (a.bits_per_sample() != b.bits_per_sample()) | 139 if (a.bits_per_sample() != b.bits_per_sample()) |
| 130 return a.bits_per_sample() < b.bits_per_sample(); | 140 return a.bits_per_sample() < b.bits_per_sample(); |
| 131 return a.frames_per_buffer() < b.frames_per_buffer(); | 141 return a.frames_per_buffer() < b.frames_per_buffer(); |
| 132 } | 142 } |
| 133 | 143 |
| 134 } // namespace media | 144 } // namespace media |
| 135 | 145 |
| 136 #endif // MEDIA_AUDIO_AUDIO_PARAMETERS_H_ | 146 #endif // MEDIA_AUDIO_AUDIO_PARAMETERS_H_ |
| OLD | NEW |