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

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

Issue 1140723003: Implement suspend() and resume() for OfflineAudioContext (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Initial review + layout tests Created 5 years, 6 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
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 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
49 virtual void render(AudioBus* sourceBus, AudioBus* destinationBus, size_t nu mberOfFrames) override final; 49 virtual void render(AudioBus* sourceBus, AudioBus* destinationBus, size_t nu mberOfFrames) override final;
50 50
51 size_t currentSampleFrame() const { return acquireLoad(&m_currentSampleFrame ); } 51 size_t currentSampleFrame() const { return acquireLoad(&m_currentSampleFrame ); }
52 double currentTime() const { return currentSampleFrame() / static_cast<doubl e>(sampleRate()); } 52 double currentTime() const { return currentSampleFrame() / static_cast<doubl e>(sampleRate()); }
53 53
54 virtual unsigned long maxChannelCount() const { return 0; } 54 virtual unsigned long maxChannelCount() const { return 0; }
55 55
56 virtual void startRendering() = 0; 56 virtual void startRendering() = 0;
57 virtual void stopRendering() = 0; 57 virtual void stopRendering() = 0;
58 58
59 virtual size_t quantizeTime(double) const { return 0; }
Raymond Toy 2015/05/28 16:37:35 I think this is too vague. Choose a more descript
hongchan 2015/06/09 20:49:59 Yes, I agree. Will fix it.
60
59 protected: 61 protected:
60 // LocalAudioInputProvider allows us to expose an AudioSourceProvider for lo cal/live audio input. 62 // LocalAudioInputProvider allows us to expose an AudioSourceProvider for lo cal/live audio input.
61 // If there is local/live audio input, we call set() with the audio input da ta every render quantum. 63 // If there is local/live audio input, we call set() with the audio input da ta every render quantum.
62 class LocalAudioInputProvider final : public AudioSourceProvider { 64 class LocalAudioInputProvider final : public AudioSourceProvider {
63 public: 65 public:
64 LocalAudioInputProvider() 66 LocalAudioInputProvider()
65 : m_sourceBus(AudioBus::create(2, ProcessingSizeInFrames)) // FIXME: handle non-stereo local input. 67 : m_sourceBus(AudioBus::create(2, ProcessingSizeInFrames)) // FIXME: handle non-stereo local input.
66 { 68 {
67 } 69 }
68 70
(...skipping 29 matching lines...) Expand all
98 100
99 unsigned long maxChannelCount() const; 101 unsigned long maxChannelCount() const;
100 102
101 protected: 103 protected:
102 AudioDestinationNode(AudioContext&); 104 AudioDestinationNode(AudioContext&);
103 }; 105 };
104 106
105 } // namespace blink 107 } // namespace blink
106 108
107 #endif // AudioDestinationNode_h 109 #endif // AudioDestinationNode_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698