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

Unified Diff: cc/output/color_lut_cache.h

Issue 2088273003: Video Color Managament (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: bugfix 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: cc/output/color_lut_cache.h
diff --git a/cc/output/color_lut_cache.h b/cc/output/color_lut_cache.h
new file mode 100644
index 0000000000000000000000000000000000000000..ca52c0a09e2700c76c6e5935540b124c904abe7f
--- /dev/null
+++ b/cc/output/color_lut_cache.h
@@ -0,0 +1,46 @@
+// 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.
+
+#ifndef CC_OUTPUT_COLOR_LUT_CACHE_H_
+#define CC_OUTPUT_COLOR_LUT_CACHE_H_
+
+#include <map>
+
+#include "base/containers/mru_cache.h"
+#include "base/macros.h"
+#include "media/base/video_color_space.h"
+#include "ui/gfx/color_space.h"
+
+namespace gpu {
+namespace gles2 {
+class GLES2Interface;
+}
+}
+
+class ColorLUTCache {
+ public:
+ explicit ColorLUTCache(gpu::gles2::GLES2Interface* gl);
+ ~ColorLUTCache();
+
+ unsigned int GetLUT(const media::VideoColorSpace& from,
+ const gfx::ColorSpace& to,
+ int lut_samples);
+
+ // End of frame, assume all LUTs handed out are no longer used.
+ void Swap();
+
+ private:
+ unsigned int MakeLUT(const media::VideoColorSpace& from,
+ const gfx::ColorSpace& to,
+ int lut_samples);
+ typedef std::pair<media::VideoColorSpace, std::pair<gfx::ColorSpace, size_t>>
+ CacheKey;
+
+ base::MRUCache<CacheKey, std::pair<unsigned int, size_t>> lut_cache_;
+ uint32_t current_frame_;
+ gpu::gles2::GLES2Interface* gl_;
+ DISALLOW_COPY_AND_ASSIGN(ColorLUTCache);
+};
+
+#endif // CC_OUTPUT_COLOR_LUT_CACHE_H_

Powered by Google App Engine
This is Rietveld 408576698