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

Unified Diff: media/tools/seek_tester/seek_tester.cc

Issue 17408005: Refactored DecoderBuffer to use unix_hacker_style naming. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@localrefactor
Patch Set: Created 7 years, 5 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 | « media/tools/demuxer_bench/demuxer_bench.cc ('k') | media/webm/webm_cluster_parser.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/tools/seek_tester/seek_tester.cc
diff --git a/media/tools/seek_tester/seek_tester.cc b/media/tools/seek_tester/seek_tester.cc
index 57b2150c475d19a3949badd9faa63c3cd5ed8070..1193413bee98719f2f38e12e001dbf507eb402b9 100644
--- a/media/tools/seek_tester/seek_tester.cc
+++ b/media/tools/seek_tester/seek_tester.cc
@@ -46,10 +46,10 @@ void TimestampExtractor(uint64* timestamp_ms,
media::DemuxerStream::Status status,
const scoped_refptr<media::DecoderBuffer>& buffer) {
CHECK_EQ(status, media::DemuxerStream::kOk);
- if (buffer->GetTimestamp() == media::kNoTimestamp())
+ if (buffer->timestamp() == media::kNoTimestamp())
*timestamp_ms = -1;
else
- *timestamp_ms = buffer->GetTimestamp().InMillisecondsF();
+ *timestamp_ms = buffer->timestamp().InMillisecondsF();
loop->PostTask(FROM_HERE, base::MessageLoop::QuitClosure());
}
« no previous file with comments | « media/tools/demuxer_bench/demuxer_bench.cc ('k') | media/webm/webm_cluster_parser.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698