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

Side by Side Diff: cc/quads/yuv_video_draw_quad.h

Issue 92703003: Support videos with JPEG color range in GPU YUV convert path. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@yuv_v2
Patch Set: Use ColorSpace enum, rather than a boolean for jpeg. Created 6 years, 7 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
1 // Copyright 2012 The Chromium Authors. All rights reserved. 1 // Copyright 2012 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_QUADS_YUV_VIDEO_DRAW_QUAD_H_ 5 #ifndef CC_QUADS_YUV_VIDEO_DRAW_QUAD_H_
6 #define CC_QUADS_YUV_VIDEO_DRAW_QUAD_H_ 6 #define CC_QUADS_YUV_VIDEO_DRAW_QUAD_H_
7 7
8 #include "base/basictypes.h" 8 #include "base/basictypes.h"
9 #include "base/memory/scoped_ptr.h" 9 #include "base/memory/scoped_ptr.h"
10 #include "cc/base/cc_export.h" 10 #include "cc/base/cc_export.h"
11 #include "cc/layers/video_layer_impl.h" 11 #include "cc/layers/video_layer_impl.h"
12 #include "cc/quads/draw_quad.h" 12 #include "cc/quads/draw_quad.h"
13 13
14 namespace cc { 14 namespace cc {
15 15
16 class CC_EXPORT YUVVideoDrawQuad : public DrawQuad { 16 class CC_EXPORT YUVVideoDrawQuad : public DrawQuad {
17 public: 17 public:
18 enum ColorSpace {
19 kRec601, // SDTV standard with restricted "studio swing" color range.
20 kRec601_Jpeg, // Full color range [0, 255] variant of the above.
21 };
Tom Sepez 2014/05/02 00:25:37 Generally, the way we do this is by adding a const
piman 2014/05/02 00:37:28 nit: we use ALL_CAPS style for enum values in chro
22
18 virtual ~YUVVideoDrawQuad(); 23 virtual ~YUVVideoDrawQuad();
19 24
20 static scoped_ptr<YUVVideoDrawQuad> Create(); 25 static scoped_ptr<YUVVideoDrawQuad> Create();
21 26
22 void SetNew(const SharedQuadState* shared_quad_state, 27 void SetNew(const SharedQuadState* shared_quad_state,
23 const gfx::Rect& rect, 28 const gfx::Rect& rect,
24 const gfx::Rect& opaque_rect, 29 const gfx::Rect& opaque_rect,
25 const gfx::Rect& visible_rect, 30 const gfx::Rect& visible_rect,
26 const gfx::RectF& tex_coord_rect, 31 const gfx::RectF& tex_coord_rect,
27 unsigned y_plane_resource_id, 32 unsigned y_plane_resource_id,
28 unsigned u_plane_resource_id, 33 unsigned u_plane_resource_id,
29 unsigned v_plane_resource_id, 34 unsigned v_plane_resource_id,
30 unsigned a_plane_resource_id); 35 unsigned a_plane_resource_id,
36 ColorSpace color_space);
31 37
32 void SetAll(const SharedQuadState* shared_quad_state, 38 void SetAll(const SharedQuadState* shared_quad_state,
33 const gfx::Rect& rect, 39 const gfx::Rect& rect,
34 const gfx::Rect& opaque_rect, 40 const gfx::Rect& opaque_rect,
35 const gfx::Rect& visible_rect, 41 const gfx::Rect& visible_rect,
36 bool needs_blending, 42 bool needs_blending,
37 const gfx::RectF& tex_coord_rect, 43 const gfx::RectF& tex_coord_rect,
38 unsigned y_plane_resource_id, 44 unsigned y_plane_resource_id,
39 unsigned u_plane_resource_id, 45 unsigned u_plane_resource_id,
40 unsigned v_plane_resource_id, 46 unsigned v_plane_resource_id,
41 unsigned a_plane_resource_id); 47 unsigned a_plane_resource_id,
48 ColorSpace color_space);
42 49
43 gfx::RectF tex_coord_rect; 50 gfx::RectF tex_coord_rect;
44 unsigned y_plane_resource_id; 51 unsigned y_plane_resource_id;
45 unsigned u_plane_resource_id; 52 unsigned u_plane_resource_id;
46 unsigned v_plane_resource_id; 53 unsigned v_plane_resource_id;
47 unsigned a_plane_resource_id; 54 unsigned a_plane_resource_id;
55 ColorSpace color_space;
48 56
49 virtual void IterateResources(const ResourceIteratorCallback& callback) 57 virtual void IterateResources(const ResourceIteratorCallback& callback)
50 OVERRIDE; 58 OVERRIDE;
51 59
52 static const YUVVideoDrawQuad* MaterialCast(const DrawQuad*); 60 static const YUVVideoDrawQuad* MaterialCast(const DrawQuad*);
53 61
54 private: 62 private:
55 YUVVideoDrawQuad(); 63 YUVVideoDrawQuad();
56 virtual void ExtendValue(base::DictionaryValue* value) const OVERRIDE; 64 virtual void ExtendValue(base::DictionaryValue* value) const OVERRIDE;
57 }; 65 };
58 66
59 } // namespace cc 67 } // namespace cc
60 68
61 #endif // CC_QUADS_YUV_VIDEO_DRAW_QUAD_H_ 69 #endif // CC_QUADS_YUV_VIDEO_DRAW_QUAD_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698