Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(113)

Side by Side Diff: Source/modules/webaudio/AudioNode.h

Issue 691143007: Implement StereoPannerNode for robust stereo panning (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « Source/modules/webaudio/AudioContext.idl ('k') | Source/modules/webaudio/AudioNode.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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
OLDNEW
« no previous file with comments | « Source/modules/webaudio/AudioContext.idl ('k') | Source/modules/webaudio/AudioNode.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698