OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2011, Google Inc. All rights reserved. | 2 * Copyright (C) 2011, 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 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
66 // As an audio source, we will never propagate silence. | 66 // As an audio source, we will never propagate silence. |
67 virtual bool propagatesSilence() const OVERRIDE { return false; } | 67 virtual bool propagatesSilence() const OVERRIDE { return false; } |
68 | 68 |
69 RefPtrWillBeMember<HTMLMediaElement> m_mediaElement; | 69 RefPtrWillBeMember<HTMLMediaElement> m_mediaElement; |
70 Mutex m_processLock; | 70 Mutex m_processLock; |
71 | 71 |
72 unsigned m_sourceNumberOfChannels; | 72 unsigned m_sourceNumberOfChannels; |
73 double m_sourceSampleRate; | 73 double m_sourceSampleRate; |
74 | 74 |
75 OwnPtr<MultiChannelResampler> m_multiChannelResampler; | 75 OwnPtr<MultiChannelResampler> m_multiChannelResampler; |
76 // Oilpan: This object must be alive between lock() and unlock(). | |
77 GC_PLUGIN_IGNORE("http://crbug.com/395940") | |
78 RefPtrWillBePersistent<MediaElementAudioSourceNode> m_keepAliveWhileLocking; | |
79 }; | 76 }; |
80 | 77 |
81 } // namespace blink | 78 } // namespace blink |
82 | 79 |
83 #endif // ENABLE(WEB_AUDIO) | 80 #endif // ENABLE(WEB_AUDIO) |
84 | 81 |
85 #endif // MediaElementAudioSourceNode_h | 82 #endif // MediaElementAudioSourceNode_h |
OLD | NEW |