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

Unified Diff: media/base/audio_timestamp_helper.cc

Issue 156783003: Enhance AudioSplicer to crossfade marked splice frames. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Resolve comments. Created 6 years, 10 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
Index: media/base/audio_timestamp_helper.cc
diff --git a/media/base/audio_timestamp_helper.cc b/media/base/audio_timestamp_helper.cc
index 38fde1f0bd947ea053c1fb069c0c6e440f4565da..2ef1d7f07948e640182b06b63d5b3e38940eeb55 100644
--- a/media/base/audio_timestamp_helper.cc
+++ b/media/base/audio_timestamp_helper.cc
@@ -22,10 +22,6 @@ void AudioTimestampHelper::SetBaseTimestamp(base::TimeDelta base_timestamp) {
frame_count_ = 0;
}
-base::TimeDelta AudioTimestampHelper::base_timestamp() const {
- return base_timestamp_;
-}
-
void AudioTimestampHelper::AddFrames(int frame_count) {
DCHECK_GE(frame_count, 0);
DCHECK(base_timestamp_ != kNoTimestamp());

Powered by Google App Engine
This is Rietveld 408576698