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

Side by Side Diff: cc/resources/video_resource_updater.h

Issue 2763503002: Move HalfFloatMaker to media (Closed)
Patch Set: Added math.h in half_float_maker_unittest.cc for POW undefined error Created 3 years, 9 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 unified diff | Download patch
« no previous file with comments | « no previous file | cc/resources/video_resource_updater.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CC_RESOURCES_VIDEO_RESOURCE_UPDATER_H_ 5 #ifndef CC_RESOURCES_VIDEO_RESOURCE_UPDATER_H_
6 #define CC_RESOURCES_VIDEO_RESOURCE_UPDATER_H_ 6 #define CC_RESOURCES_VIDEO_RESOURCE_UPDATER_H_
7 7
8 #include <stddef.h> 8 #include <stddef.h>
9 #include <stdint.h> 9 #include <stdint.h>
10 10
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after
73 class CC_EXPORT VideoResourceUpdater 73 class CC_EXPORT VideoResourceUpdater
74 : public base::SupportsWeakPtr<VideoResourceUpdater> { 74 : public base::SupportsWeakPtr<VideoResourceUpdater> {
75 public: 75 public:
76 VideoResourceUpdater(ContextProvider* context_provider, 76 VideoResourceUpdater(ContextProvider* context_provider,
77 ResourceProvider* resource_provider); 77 ResourceProvider* resource_provider);
78 ~VideoResourceUpdater(); 78 ~VideoResourceUpdater();
79 79
80 VideoFrameExternalResources CreateExternalResourcesFromVideoFrame( 80 VideoFrameExternalResources CreateExternalResourcesFromVideoFrame(
81 scoped_refptr<media::VideoFrame> video_frame); 81 scoped_refptr<media::VideoFrame> video_frame);
82 82
83 // Base class for converting short integers to half-floats.
84 // TODO(hubbe): Move this to media/.
85 class HalfFloatMaker {
86 public:
87 // Convert an array of short integers into an array of half-floats.
88 // |src| is an array of integers in range 0 .. 2^{bits_per_channel} - 1
89 // |num| is number of entries in input and output array.
90 // The numbers stored in |dst| will be half floats in range 0.0..1.0
91 virtual void MakeHalfFloats(const uint16_t* src,
92 size_t num,
93 uint16_t* dst) = 0;
94 // The half-floats made needs by this class will be in the range
95 // [Offset() .. Offset() + 1.0/Multiplier]. So if you want results
96 // in the 0-1 range, you need to do:
97 // (half_float - Offset()) * Multiplier()
98 // to each returned value.
99 virtual float Offset() const = 0;
100 virtual float Multiplier() const = 0;
101 };
102
103 static std::unique_ptr<HalfFloatMaker> NewHalfFloatMaker(
104 int bits_per_channel);
105 83
106 private: 84 private:
107 class PlaneResource { 85 class PlaneResource {
108 public: 86 public:
109 PlaneResource(unsigned resource_id, 87 PlaneResource(unsigned resource_id,
110 const gfx::Size& resource_size, 88 const gfx::Size& resource_size,
111 ResourceFormat resource_format, 89 ResourceFormat resource_format,
112 gpu::Mailbox mailbox); 90 gpu::Mailbox mailbox);
113 PlaneResource(const PlaneResource& other); 91 PlaneResource(const PlaneResource& other);
114 92
(...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after
204 // Recycle resources so that we can reduce the number of allocations and 182 // Recycle resources so that we can reduce the number of allocations and
205 // data transfers. 183 // data transfers.
206 ResourceList all_resources_; 184 ResourceList all_resources_;
207 185
208 DISALLOW_COPY_AND_ASSIGN(VideoResourceUpdater); 186 DISALLOW_COPY_AND_ASSIGN(VideoResourceUpdater);
209 }; 187 };
210 188
211 } // namespace cc 189 } // namespace cc
212 190
213 #endif // CC_RESOURCES_VIDEO_RESOURCE_UPDATER_H_ 191 #endif // CC_RESOURCES_VIDEO_RESOURCE_UPDATER_H_
OLDNEW
« no previous file with comments | « no previous file | cc/resources/video_resource_updater.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698