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

Side by Side Diff: media/video/half_float_maker.h

Issue 2763503002: Move HalfFloatMaker to media (Closed)
Patch Set: Moved HalffloatMaker and its implementation from cc to media 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
OLDNEW
(Empty)
1 // Copyright 2017 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef MEDIA_VIDEO_HALF_FLOAT_MAKER_H_
6 #define MEDIA_VIDEO_HALF_FLOAT_MAKER_H_
7
8 #include <stddef.h>
9 #include <stdint.h>
10
11 namespace media {
12
13 class HalfFloatMaker {
14 public:
15 // Convert an array of short integers into an array of half-floats.
16 // |src| is an array of integers in range 0 .. 2^{bits_per_channel} - 1
17 // |num| is number of entries in input and output array.
18 // The numbers stored in |dst| will be half floats in range 0.0..1.0
19 virtual void MakeHalfFloats(const uint16_t* src,
20 size_t num,
21 uint16_t* dst) = 0;
22 // The half-floats made needs by this class will be in the range
23 // [Offset() .. Offset() + 1.0/Multiplier]. So if you want results
24 // in the 0-1 range, you need to do:
25 // (half_float - Offset()) * Multiplier()
26 // to each returned value.
27 virtual float Offset() const = 0;
28 virtual float Multiplier() const = 0;
29 };
30
31 } // namespace media
32 #endif // MEDIA_VIDEO_HALF_FLOAT_MAKER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698