OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2010, Google Inc. All rights reserved. | 2 * Copyright (C) 2010, Google Inc. All rights reserved. |
3 * | 3 * |
4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
5 * modification, are permitted provided that the following conditions | 5 * modification, are permitted provided that the following conditions |
6 * are met: | 6 * are met: |
7 * 1. Redistributions of source code must retain the above copyright | 7 * 1. Redistributions of source code must retain the above copyright |
8 * notice, this list of conditions and the following disclaimer. | 8 * notice, this list of conditions and the following disclaimer. |
9 * 2. Redistributions in binary form must reproduce the above copyright | 9 * 2. Redistributions in binary form must reproduce the above copyright |
10 * notice, this list of conditions and the following disclaimer in the | 10 * notice, this list of conditions and the following disclaimer in the |
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
70 NodeTypeUnknown, | 70 NodeTypeUnknown, |
71 NodeTypeDestination, | 71 NodeTypeDestination, |
72 NodeTypeOscillator, | 72 NodeTypeOscillator, |
73 NodeTypeAudioBufferSource, | 73 NodeTypeAudioBufferSource, |
74 NodeTypeMediaElementAudioSource, | 74 NodeTypeMediaElementAudioSource, |
75 NodeTypeMediaStreamAudioDestination, | 75 NodeTypeMediaStreamAudioDestination, |
76 NodeTypeMediaStreamAudioSource, | 76 NodeTypeMediaStreamAudioSource, |
77 NodeTypeJavaScript, | 77 NodeTypeJavaScript, |
78 NodeTypeBiquadFilter, | 78 NodeTypeBiquadFilter, |
79 NodeTypePanner, | 79 NodeTypePanner, |
| 80 NodeTypeStereoPanner, |
80 NodeTypeConvolver, | 81 NodeTypeConvolver, |
81 NodeTypeDelay, | 82 NodeTypeDelay, |
82 NodeTypeGain, | 83 NodeTypeGain, |
83 NodeTypeChannelSplitter, | 84 NodeTypeChannelSplitter, |
84 NodeTypeChannelMerger, | 85 NodeTypeChannelMerger, |
85 NodeTypeAnalyser, | 86 NodeTypeAnalyser, |
86 NodeTypeDynamicsCompressor, | 87 NodeTypeDynamicsCompressor, |
87 NodeTypeWaveShaper, | 88 NodeTypeWaveShaper, |
88 NodeTypeEnd | 89 NodeTypeEnd |
89 }; | 90 }; |
(...skipping 144 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
234 ChannelCountMode m_channelCountMode; | 235 ChannelCountMode m_channelCountMode; |
235 AudioBus::ChannelInterpretation m_channelInterpretation; | 236 AudioBus::ChannelInterpretation m_channelInterpretation; |
236 // The new channel count mode that will be used to set the actual mode in th
e pre or post | 237 // The new channel count mode that will be used to set the actual mode in th
e pre or post |
237 // rendering phase. | 238 // rendering phase. |
238 ChannelCountMode m_newChannelCountMode; | 239 ChannelCountMode m_newChannelCountMode; |
239 }; | 240 }; |
240 | 241 |
241 } // namespace blink | 242 } // namespace blink |
242 | 243 |
243 #endif // AudioNode_h | 244 #endif // AudioNode_h |
OLD | NEW |