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

Unified Diff: media/base/hdr_metadata.cc

Issue 2333663003: Add color metadata info to VideoDecoderConfig. (Closed)
Patch Set: buildfix Created 4 years, 3 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/hdr_metadata.cc
diff --git a/media/base/hdr_metadata.cc b/media/base/hdr_metadata.cc
new file mode 100644
index 0000000000000000000000000000000000000000..ed8b269df7d3924ec768bb47a22bf22c991bba91
--- /dev/null
+++ b/media/base/hdr_metadata.cc
@@ -0,0 +1,20 @@
+// Copyright 2016 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#include "media/base/hdr_metadata.h"
+
+#include "base/logging.h"
halliwell 2016/09/14 18:58:40 nit, unnecessary
servolk 2016/09/14 22:34:35 Done.
+
+namespace media {
+
+MasteringMetadata::MasteringMetadata() {}
+MasteringMetadata::MasteringMetadata(const MasteringMetadata& rhs) = default;
+
+HDRMetadata::HDRMetadata() {}
+HDRMetadata::HDRMetadata(const HDRMetadata& rhs) = default;
+
+ColorMetadata::ColorMetadata() {}
+ColorMetadata::ColorMetadata(const ColorMetadata& rhs) = default;
+
+} // namespace media

Powered by Google App Engine
This is Rietveld 408576698