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

Side by Side Diff: cc/output/gl_renderer.cc

Issue 12157002: Adding YUVA support for enabling Alpha Playback (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: addressing comments Created 7 years, 8 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 | Annotate | Revision Log
« no previous file with comments | « cc/output/gl_renderer.h ('k') | cc/output/gl_renderer_unittest.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 2010 The Chromium Authors. All rights reserved. 1 // Copyright 2010 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 #include "cc/output/gl_renderer.h" 5 #include "cc/output/gl_renderer.h"
6 6
7 #include <set> 7 #include <set>
8 #include <string> 8 #include <string>
9 #include <vector> 9 #include <vector>
10 10
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after
72 bool NeedsIOSurfaceReadbackWorkaround() { 72 bool NeedsIOSurfaceReadbackWorkaround() {
73 #if defined(OS_MACOSX) 73 #if defined(OS_MACOSX)
74 // This isn't strictly required in DumpRenderTree-mode when Mesa is used, 74 // This isn't strictly required in DumpRenderTree-mode when Mesa is used,
75 // but it doesn't seem to hurt. 75 // but it doesn't seem to hurt.
76 return true; 76 return true;
77 #else 77 #else
78 return false; 78 return false;
79 #endif 79 #endif
80 } 80 }
81 81
82 // These values are magic numbers that are used in the transformation from YUV
danakj 2013/04/11 21:10:00 Seems like these can stay local to the DrawYUVQuad
vignesh 2013/05/30 23:28:25 Done.
83 // to RGB color values. They are taken from the following webpage:
84 // http://www.fourcc.org/fccyvrgb.php
85 float yuv_to_rgb[9] = {
86 1.164f, 1.164f, 1.164f,
87 0.f, -.391f, 2.018f,
88 1.596f, -.813f, 0.f,
89 };
90
91 // These values map to 16, 128, and 128 respectively, and are computed
92 // as a fraction over 256 (e.g. 16 / 256 = 0.0625).
93 // They are used in the YUV to RGBA conversion formula:
94 // Y - 16 : Gives 16 values of head and footroom for overshooting
95 // U - 128 : Turns unsigned U into signed U [-128,127]
96 // V - 128 : Turns unsigned V into signed V [-128,127]
97 float yuv_adjust[3] = { -0.0625f, -0.5f, -0.5f, };
98
82 } // anonymous namespace 99 } // anonymous namespace
83 100
84 scoped_ptr<GLRenderer> GLRenderer::Create(RendererClient* client, 101 scoped_ptr<GLRenderer> GLRenderer::Create(RendererClient* client,
85 OutputSurface* output_surface, 102 OutputSurface* output_surface,
86 ResourceProvider* resource_provider) { 103 ResourceProvider* resource_provider) {
87 scoped_ptr<GLRenderer> renderer( 104 scoped_ptr<GLRenderer> renderer(
88 new GLRenderer(client, output_surface, resource_provider)); 105 new GLRenderer(client, output_surface, resource_provider));
89 if (!renderer->Initialize()) 106 if (!renderer->Initialize())
90 return scoped_ptr<GLRenderer>(); 107 return scoped_ptr<GLRenderer>();
91 108
(...skipping 1100 matching lines...) Expand 10 before | Expand all | Expand 10 after
1192 gfx::PointF(-0.5f * tile_rect.width(), -0.5f * tile_rect.height()), 1209 gfx::PointF(-0.5f * tile_rect.width(), -0.5f * tile_rect.height()),
1193 tile_rect.size()); 1210 tile_rect.size());
1194 DrawQuadGeometry( 1211 DrawQuadGeometry(
1195 frame, quad->quadTransform(), centered_rect, uniforms.matrix_location); 1212 frame, quad->quadTransform(), centered_rect, uniforms.matrix_location);
1196 } 1213 }
1197 1214
1198 void GLRenderer::DrawYUVVideoQuad(const DrawingFrame* frame, 1215 void GLRenderer::DrawYUVVideoQuad(const DrawingFrame* frame,
1199 const YUVVideoDrawQuad* quad) { 1216 const YUVVideoDrawQuad* quad) {
1200 SetBlendEnabled(quad->ShouldDrawWithBlending()); 1217 SetBlendEnabled(quad->ShouldDrawWithBlending());
1201 1218
1202 const VideoYUVProgram* program = GetVideoYUVProgram();
1203 DCHECK(program && (program->initialized() || IsContextLost()));
1204
1205 const VideoLayerImpl::FramePlane& y_plane = quad->y_plane; 1219 const VideoLayerImpl::FramePlane& y_plane = quad->y_plane;
1206 const VideoLayerImpl::FramePlane& u_plane = quad->u_plane; 1220 const VideoLayerImpl::FramePlane& u_plane = quad->u_plane;
1207 const VideoLayerImpl::FramePlane& v_plane = quad->v_plane; 1221 const VideoLayerImpl::FramePlane& v_plane = quad->v_plane;
1222 const VideoLayerImpl::FramePlane& a_plane = quad->a_plane;
1223 bool use_alpha_plane = a_plane.resource_id != 0;
1208 1224
1209 GLC(Context(), Context()->activeTexture(GL_TEXTURE1)); 1225 GLC(Context(), Context()->activeTexture(GL_TEXTURE1));
1210 ResourceProvider::ScopedSamplerGL y_plane_lock( 1226 ResourceProvider::ScopedSamplerGL y_plane_lock(
1211 resource_provider_, y_plane.resource_id, GL_TEXTURE_2D, GL_LINEAR); 1227 resource_provider_, y_plane.resource_id, GL_TEXTURE_2D, GL_LINEAR);
1212 GLC(Context(), Context()->activeTexture(GL_TEXTURE2)); 1228 GLC(Context(), Context()->activeTexture(GL_TEXTURE2));
1213 ResourceProvider::ScopedSamplerGL u_plane_lock( 1229 ResourceProvider::ScopedSamplerGL u_plane_lock(
1214 resource_provider_, u_plane.resource_id, GL_TEXTURE_2D, GL_LINEAR); 1230 resource_provider_, u_plane.resource_id, GL_TEXTURE_2D, GL_LINEAR);
1215 GLC(Context(), Context()->activeTexture(GL_TEXTURE3)); 1231 GLC(Context(), Context()->activeTexture(GL_TEXTURE3));
1216 ResourceProvider::ScopedSamplerGL v_plane_lock( 1232 ResourceProvider::ScopedSamplerGL v_plane_lock(
1217 resource_provider_, v_plane.resource_id, GL_TEXTURE_2D, GL_LINEAR); 1233 resource_provider_, v_plane.resource_id, GL_TEXTURE_2D, GL_LINEAR);
1234 if (use_alpha_plane) {
1235 scoped_ptr<ResourceProvider::ScopedSamplerGL> a_plane_lock;
1236 a_plane_lock.reset(new ResourceProvider::ScopedSamplerGL(
1237 resource_provider_,
1238 a_plane.resource_id,
1239 GL_TEXTURE_2D,
1240 GL_LINEAR));
1241 }
1218 1242
1219 SetUseProgram(program->program()); 1243 int tex_scale_location = -1;
1244 int matrix_location = -1;
1245 int y_texture_location = -1;
1246 int u_texture_location = -1;
1247 int v_texture_location = -1;
1248 int a_texture_location = -1;
1249 int yuv_matrix_location = -1;
1250 int yuv_adj_location = -1;
1251 int alpha_location = -1;
1252 if (use_alpha_plane) {
danakj 2013/04/11 21:10:00 If (use_alpha_plane) is true, you are using the YU
vignesh 2013/05/30 23:28:25 Done.
1253 const VideoYUVProgram* program = GetVideoYUVProgram();
1254 DCHECK(program && (program->initialized() || IsContextLost()));
1255 SetUseProgram(program->program());
1256 tex_scale_location = program->vertex_shader().tex_scale_location();
1257 matrix_location = program->vertex_shader().matrix_location();
1258 y_texture_location = program->fragment_shader().y_texture_location();
1259 u_texture_location = program->fragment_shader().u_texture_location();
1260 v_texture_location = program->fragment_shader().v_texture_location();
1261 yuv_matrix_location = program->fragment_shader().yuv_matrix_location();
1262 yuv_adj_location = program->fragment_shader().yuv_adj_location();
1263 alpha_location = program->fragment_shader().alpha_location();
1264 } else {
1265 const VideoYUVAProgram* program = GetVideoYUVAProgram();
1266 DCHECK(program && (program->initialized() || IsContextLost()));
1267 SetUseProgram(program->program());
1268 tex_scale_location = program->vertex_shader().tex_scale_location();
1269 matrix_location = program->vertex_shader().matrix_location();
1270 y_texture_location = program->fragment_shader().y_texture_location();
1271 u_texture_location = program->fragment_shader().u_texture_location();
1272 v_texture_location = program->fragment_shader().v_texture_location();
1273 a_texture_location = program->fragment_shader().a_texture_location();
1274 yuv_matrix_location = program->fragment_shader().yuv_matrix_location();
1275 yuv_adj_location = program->fragment_shader().yuv_adj_location();
1276 alpha_location = program->fragment_shader().alpha_location();
1277 }
1220 1278
1221 GLC(Context(), 1279 GLC(Context(),
1222 Context()->uniform2f(program->vertex_shader().tex_scale_location(), 1280 Context()->uniform2f(tex_scale_location,
1223 quad->tex_scale.width(), 1281 quad->tex_scale.width(),
1224 quad->tex_scale.height())); 1282 quad->tex_scale.height()));
1283 GLC(Context(), Context()->uniform1i(y_texture_location, 1));
1284 GLC(Context(), Context()->uniform1i(u_texture_location, 2));
1285 GLC(Context(), Context()->uniform1i(v_texture_location, 3));
1286 if (use_alpha_plane) {
1287 GLC(Context(), Context()->uniform1i(a_texture_location, 4));
danakj 2013/04/11 21:10:00 nit: no {} for 1 line body
vignesh 2013/05/30 23:28:25 Done.
1288 }
1289
1225 GLC(Context(), 1290 GLC(Context(),
1226 Context()->uniform1i(program->fragment_shader().y_texture_location(), 1)); 1291 Context()->uniformMatrix3fv(yuv_matrix_location, 1, 0, yuv_to_rgb));
1227 GLC(Context(), 1292 GLC(Context(), Context()->uniform3fv(yuv_adj_location, 1, yuv_adjust));
1228 Context()->uniform1i(program->fragment_shader().u_texture_location(), 2));
1229 GLC(Context(),
1230 Context()->uniform1i(program->fragment_shader().v_texture_location(), 3));
1231 1293
1232 // These values are magic numbers that are used in the transformation from YUV
1233 // to RGB color values. They are taken from the following webpage:
1234 // http://www.fourcc.org/fccyvrgb.php
1235 float yuv_to_rgb[9] = {
1236 1.164f, 1.164f, 1.164f,
1237 0.0f, -.391f, 2.018f,
1238 1.596f, -.813f, 0.0f,
1239 };
1240 GLC(Context(),
1241 Context()->uniformMatrix3fv(
1242 program->fragment_shader().yuv_matrix_location(), 1, 0, yuv_to_rgb));
1243 1294
1244 // These values map to 16, 128, and 128 respectively, and are computed 1295 SetShaderOpacity(quad->opacity(), alpha_location);
1245 // as a fraction over 256 (e.g. 16 / 256 = 0.0625). 1296 DrawQuadGeometry(frame, quad->quadTransform(), quad->rect, matrix_location);
1246 // They are used in the YUV to RGBA conversion formula:
1247 // Y - 16 : Gives 16 values of head and footroom for overshooting
1248 // U - 128 : Turns unsigned U into signed U [-128,127]
1249 // V - 128 : Turns unsigned V into signed V [-128,127]
1250 float yuv_adjust[3] = { -0.0625f, -0.5f, -0.5f, };
1251 GLC(Context(),
1252 Context()->uniform3fv(
1253 program->fragment_shader().yuv_adj_location(), 1, yuv_adjust));
1254
1255 SetShaderOpacity(quad->opacity(),
1256 program->fragment_shader().alpha_location());
1257 DrawQuadGeometry(frame,
1258 quad->quadTransform(),
1259 quad->rect,
1260 program->vertex_shader().matrix_location());
1261 1297
1262 // Reset active texture back to texture 0. 1298 // Reset active texture back to texture 0.
1263 GLC(Context(), Context()->activeTexture(GL_TEXTURE0)); 1299 GLC(Context(), Context()->activeTexture(GL_TEXTURE0));
1264 } 1300 }
1265 1301
1266 void GLRenderer::DrawStreamVideoQuad(const DrawingFrame* frame, 1302 void GLRenderer::DrawStreamVideoQuad(const DrawingFrame* frame,
1267 const StreamVideoDrawQuad* quad) { 1303 const StreamVideoDrawQuad* quad) {
1268 SetBlendEnabled(quad->ShouldDrawWithBlending()); 1304 SetBlendEnabled(quad->ShouldDrawWithBlending());
1269 1305
1270 static float gl_matrix[16]; 1306 static float gl_matrix[16];
(...skipping 931 matching lines...) Expand 10 before | Expand all | Expand 10 after
2202 const GLRenderer::VideoYUVProgram* GLRenderer::GetVideoYUVProgram() { 2238 const GLRenderer::VideoYUVProgram* GLRenderer::GetVideoYUVProgram() {
2203 if (!video_yuv_program_) 2239 if (!video_yuv_program_)
2204 video_yuv_program_ = make_scoped_ptr(new VideoYUVProgram(context_)); 2240 video_yuv_program_ = make_scoped_ptr(new VideoYUVProgram(context_));
2205 if (!video_yuv_program_->initialized()) { 2241 if (!video_yuv_program_->initialized()) {
2206 TRACE_EVENT0("cc", "GLRenderer::videoYUVProgram::initialize"); 2242 TRACE_EVENT0("cc", "GLRenderer::videoYUVProgram::initialize");
2207 video_yuv_program_->Initialize(context_, is_using_bind_uniform_); 2243 video_yuv_program_->Initialize(context_, is_using_bind_uniform_);
2208 } 2244 }
2209 return video_yuv_program_.get(); 2245 return video_yuv_program_.get();
2210 } 2246 }
2211 2247
2248 const GLRenderer::VideoYUVAProgram* GLRenderer::GetVideoYUVAProgram() {
2249 if (!video_yuva_program_)
2250 video_yuva_program_ = make_scoped_ptr(new VideoYUVAProgram(context_));
2251 if (!video_yuva_program_->initialized()) {
2252 TRACE_EVENT0("cc", "GLRenderer::videoYUVAProgram::initialize");
2253 video_yuva_program_->Initialize(context_, is_using_bind_uniform_);
2254 }
2255 return video_yuva_program_.get();
2256 }
2257
2212 const GLRenderer::VideoStreamTextureProgram* 2258 const GLRenderer::VideoStreamTextureProgram*
2213 GLRenderer::GetVideoStreamTextureProgram() { 2259 GLRenderer::GetVideoStreamTextureProgram() {
2214 if (!Capabilities().using_egl_image) 2260 if (!Capabilities().using_egl_image)
2215 return NULL; 2261 return NULL;
2216 if (!video_stream_texture_program_) 2262 if (!video_stream_texture_program_)
2217 video_stream_texture_program_ = 2263 video_stream_texture_program_ =
2218 make_scoped_ptr(new VideoStreamTextureProgram(context_)); 2264 make_scoped_ptr(new VideoStreamTextureProgram(context_));
2219 if (!video_stream_texture_program_->initialized()) { 2265 if (!video_stream_texture_program_->initialized()) {
2220 TRACE_EVENT0("cc", "GLRenderer::streamTextureProgram::initialize"); 2266 TRACE_EVENT0("cc", "GLRenderer::streamTextureProgram::initialize");
2221 video_stream_texture_program_->Initialize(context_, is_using_bind_uniform_); 2267 video_stream_texture_program_->Initialize(context_, is_using_bind_uniform_);
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
2254 2300
2255 if (texture_program_) 2301 if (texture_program_)
2256 texture_program_->Cleanup(context_); 2302 texture_program_->Cleanup(context_);
2257 if (texture_program_flip_) 2303 if (texture_program_flip_)
2258 texture_program_flip_->Cleanup(context_); 2304 texture_program_flip_->Cleanup(context_);
2259 if (texture_io_surface_program_) 2305 if (texture_io_surface_program_)
2260 texture_io_surface_program_->Cleanup(context_); 2306 texture_io_surface_program_->Cleanup(context_);
2261 2307
2262 if (video_yuv_program_) 2308 if (video_yuv_program_)
2263 video_yuv_program_->Cleanup(context_); 2309 video_yuv_program_->Cleanup(context_);
2310 if (video_yuva_program_)
2311 video_yuva_program_->Cleanup(context_);
2264 if (video_stream_texture_program_) 2312 if (video_stream_texture_program_)
2265 video_stream_texture_program_->Cleanup(context_); 2313 video_stream_texture_program_->Cleanup(context_);
2266 2314
2267 if (debug_border_program_) 2315 if (debug_border_program_)
2268 debug_border_program_->Cleanup(context_); 2316 debug_border_program_->Cleanup(context_);
2269 if (solid_color_program_) 2317 if (solid_color_program_)
2270 solid_color_program_->Cleanup(context_); 2318 solid_color_program_->Cleanup(context_);
2271 if (solid_color_program_aa_) 2319 if (solid_color_program_aa_)
2272 solid_color_program_aa_->Cleanup(context_); 2320 solid_color_program_aa_->Cleanup(context_);
2273 2321
2274 if (offscreen_framebuffer_id_) 2322 if (offscreen_framebuffer_id_)
2275 GLC(context_, context_->deleteFramebuffer(offscreen_framebuffer_id_)); 2323 GLC(context_, context_->deleteFramebuffer(offscreen_framebuffer_id_));
2276 2324
2277 if (on_demand_tile_raster_resource_id_) 2325 if (on_demand_tile_raster_resource_id_)
2278 resource_provider_->DeleteResource(on_demand_tile_raster_resource_id_); 2326 resource_provider_->DeleteResource(on_demand_tile_raster_resource_id_);
2279 2327
2280 ReleaseRenderPassTextures(); 2328 ReleaseRenderPassTextures();
2281 } 2329 }
2282 2330
2283 bool GLRenderer::IsContextLost() { 2331 bool GLRenderer::IsContextLost() {
2284 return (context_->getGraphicsResetStatusARB() != GL_NO_ERROR); 2332 return (context_->getGraphicsResetStatusARB() != GL_NO_ERROR);
2285 } 2333 }
2286 2334
2287 } // namespace cc 2335 } // namespace cc
OLDNEW
« no previous file with comments | « cc/output/gl_renderer.h ('k') | cc/output/gl_renderer_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698