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

Unified Diff: media/base/decoder_buffer.cc

Issue 2158923004: Convert media constants to constexpr. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 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
Index: media/base/decoder_buffer.cc
diff --git a/media/base/decoder_buffer.cc b/media/base/decoder_buffer.cc
index 621ba00539a3d3a4d55611f7290d2a958aeab9fc..07953905dd262b93586deedabfd419b2cffbcc12 100644
--- a/media/base/decoder_buffer.cc
+++ b/media/base/decoder_buffer.cc
@@ -50,7 +50,7 @@ void DecoderBuffer::Initialize() {
data_.reset(AllocateFFmpegSafeBlock(size_));
if (side_data_size_ > 0)
side_data_.reset(AllocateFFmpegSafeBlock(side_data_size_));
- splice_timestamp_ = kNoTimestamp();
+ splice_timestamp_ = kNoTimestamp;
}
// static

Powered by Google App Engine
This is Rietveld 408576698