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

Side by Side Diff: Source/WebCore/Modules/webaudio/ChannelMergerNode.h

Issue 12478015: Merge 143565 (Closed) Base URL: http://svn.webkit.org/repository/webkit/branches/chromium/1410/
Patch Set: Created 7 years, 9 months 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 | « no previous file | Source/WebCore/Modules/webaudio/ChannelMergerNode.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 * 7 *
8 * 1. Redistributions of source code must retain the above copyright 8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright 10 * 2. Redistributions in binary form must reproduce the above copyright
(...skipping 30 matching lines...) Expand all
41 static PassRefPtr<ChannelMergerNode> create(AudioContext*, float sampleRate, unsigned numberOfInputs); 41 static PassRefPtr<ChannelMergerNode> create(AudioContext*, float sampleRate, unsigned numberOfInputs);
42 42
43 // AudioNode 43 // AudioNode
44 virtual void process(size_t framesToProcess); 44 virtual void process(size_t framesToProcess);
45 virtual void reset(); 45 virtual void reset();
46 46
47 // Called in the audio thread (pre-rendering task) when the number of channe ls for an input may have changed. 47 // Called in the audio thread (pre-rendering task) when the number of channe ls for an input may have changed.
48 virtual void checkNumberOfChannelsForInput(AudioNodeInput*); 48 virtual void checkNumberOfChannelsForInput(AudioNodeInput*);
49 49
50 private: 50 private:
51 unsigned m_desiredNumberOfOutputChannels;
52
51 virtual double tailTime() const OVERRIDE { return 0; } 53 virtual double tailTime() const OVERRIDE { return 0; }
52 virtual double latencyTime() const OVERRIDE { return 0; } 54 virtual double latencyTime() const OVERRIDE { return 0; }
53 55
54 ChannelMergerNode(AudioContext*, float sampleRate, unsigned numberOfInputs); 56 ChannelMergerNode(AudioContext*, float sampleRate, unsigned numberOfInputs);
55 }; 57 };
56 58
57 } // namespace WebCore 59 } // namespace WebCore
58 60
59 #endif // ChannelMergerNode_h 61 #endif // ChannelMergerNode_h
OLDNEW
« no previous file with comments | « no previous file | Source/WebCore/Modules/webaudio/ChannelMergerNode.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698