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

Unified Diff: media/filters/audio_renderer_impl.h

Issue 256163005: Introduce AudioClock to improve playback delay calculations. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 8 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | media/filters/audio_renderer_impl.cc » ('j') | media/filters/audio_renderer_impl.cc » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/filters/audio_renderer_impl.h
diff --git a/media/filters/audio_renderer_impl.h b/media/filters/audio_renderer_impl.h
index f6f41f1ea5b3ec741a7706ce860f98f9bc51a4be..4e3531be795d30ca5a691edd3798bbcd83fa7b61 100644
--- a/media/filters/audio_renderer_impl.h
+++ b/media/filters/audio_renderer_impl.h
@@ -37,11 +37,12 @@ class SingleThreadTaskRunner;
namespace media {
-class AudioBus;
class AudioBufferConverter;
+class AudioBus;
+class AudioHardwareConfig;
class AudioSplicer;
+class BufferedAudioTracker;
class DecryptingDemuxerStream;
-class AudioHardwareConfig;
class MEDIA_EXPORT AudioRendererImpl
: public AudioRenderer,
@@ -276,6 +277,8 @@ class MEDIA_EXPORT AudioRendererImpl
// false otherwise. This flag is cleared on the next Preroll() call.
bool preroll_aborted_;
+ scoped_ptr<BufferedAudioTracker> buffered_audio_tracker_;
+
// End variables which must be accessed under |lock_|. ----------------------
// NOTE: Weak pointers must be invalidated before all other member variables.
« no previous file with comments | « no previous file | media/filters/audio_renderer_impl.cc » ('j') | media/filters/audio_renderer_impl.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698