| 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 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 74 class MODULES_EXPORT AudioHandler : public ThreadSafeRefCounted<AudioHandler> { | 74 class MODULES_EXPORT AudioHandler : public ThreadSafeRefCounted<AudioHandler> { |
| 75 public: | 75 public: |
| 76 enum NodeType { | 76 enum NodeType { |
| 77 kNodeTypeUnknown = 0, | 77 kNodeTypeUnknown = 0, |
| 78 kNodeTypeDestination = 1, | 78 kNodeTypeDestination = 1, |
| 79 kNodeTypeOscillator = 2, | 79 kNodeTypeOscillator = 2, |
| 80 kNodeTypeAudioBufferSource = 3, | 80 kNodeTypeAudioBufferSource = 3, |
| 81 kNodeTypeMediaElementAudioSource = 4, | 81 kNodeTypeMediaElementAudioSource = 4, |
| 82 kNodeTypeMediaStreamAudioDestination = 5, | 82 kNodeTypeMediaStreamAudioDestination = 5, |
| 83 kNodeTypeMediaStreamAudioSource = 6, | 83 kNodeTypeMediaStreamAudioSource = 6, |
| 84 kNodeTypeJavaScript = 7, | 84 kNodeTypeScriptProcessor = 7, |
| 85 kNodeTypeBiquadFilter = 8, | 85 kNodeTypeBiquadFilter = 8, |
| 86 kNodeTypePanner = 9, | 86 kNodeTypePanner = 9, |
| 87 kNodeTypeStereoPanner = 10, | 87 kNodeTypeStereoPanner = 10, |
| 88 kNodeTypeConvolver = 11, | 88 kNodeTypeConvolver = 11, |
| 89 kNodeTypeDelay = 12, | 89 kNodeTypeDelay = 12, |
| 90 kNodeTypeGain = 13, | 90 kNodeTypeGain = 13, |
| 91 kNodeTypeChannelSplitter = 14, | 91 kNodeTypeChannelSplitter = 14, |
| 92 kNodeTypeChannelMerger = 15, | 92 kNodeTypeChannelMerger = 15, |
| 93 kNodeTypeAnalyser = 16, | 93 kNodeTypeAnalyser = 16, |
| 94 kNodeTypeDynamicsCompressor = 17, | 94 kNodeTypeDynamicsCompressor = 17, |
| (...skipping 277 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 372 HeapVector<Member<HeapHashSet<Member<AudioNode>>>> connected_nodes_; | 372 HeapVector<Member<HeapHashSet<Member<AudioNode>>>> connected_nodes_; |
| 373 // Represents audio node graph with Oilpan references. N-th HeapHashSet | 373 // Represents audio node graph with Oilpan references. N-th HeapHashSet |
| 374 // represents a set of AudioParam objects connected to this AudioNode's N-th | 374 // represents a set of AudioParam objects connected to this AudioNode's N-th |
| 375 // output. | 375 // output. |
| 376 HeapVector<Member<HeapHashSet<Member<AudioParam>>>> connected_params_; | 376 HeapVector<Member<HeapHashSet<Member<AudioParam>>>> connected_params_; |
| 377 }; | 377 }; |
| 378 | 378 |
| 379 } // namespace blink | 379 } // namespace blink |
| 380 | 380 |
| 381 #endif // AudioNode_h | 381 #endif // AudioNode_h |
| OLD | NEW |