OLD | NEW |
1 // Copyright 2011 The Chromium Authors. All rights reserved. | 1 // Copyright 2011 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/layers/video_layer_impl.h" | 5 #include "cc/layers/video_layer_impl.h" |
6 | 6 |
7 #include "base/logging.h" | 7 #include "base/logging.h" |
8 #include "cc/base/math_util.h" | 8 #include "cc/base/math_util.h" |
9 #include "cc/layers/quad_sink.h" | 9 #include "cc/layers/quad_sink.h" |
10 #include "cc/layers/video_frame_provider_client_impl.h" | 10 #include "cc/layers/video_frame_provider_client_impl.h" |
(...skipping 183 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
194 quad_sink->Append(solid_color_draw_quad.PassAs<DrawQuad>(), | 194 quad_sink->Append(solid_color_draw_quad.PassAs<DrawQuad>(), |
195 append_quads_data); | 195 append_quads_data); |
196 return; | 196 return; |
197 } | 197 } |
198 #endif | 198 #endif |
199 | 199 |
200 switch (format_) { | 200 switch (format_) { |
201 case media::VideoFrame::YV12: | 201 case media::VideoFrame::YV12: |
202 case media::VideoFrame::YV16: { | 202 case media::VideoFrame::YV16: { |
203 // YUV software decoder. | 203 // YUV software decoder. |
204 const FramePlane& y_plane = frame_planes_[media::VideoFrame::kYPlane]; | 204 const FramePlane* y_plane = &frame_planes_[media::VideoFrame::kYPlane]; |
205 const FramePlane& u_plane = frame_planes_[media::VideoFrame::kUPlane]; | 205 const FramePlane* u_plane = &frame_planes_[media::VideoFrame::kUPlane]; |
206 const FramePlane& v_plane = frame_planes_[media::VideoFrame::kVPlane]; | 206 const FramePlane* v_plane = &frame_planes_[media::VideoFrame::kVPlane]; |
207 gfx::SizeF tex_scale(tex_width_scale, tex_height_scale); | 207 gfx::SizeF tex_scale(tex_width_scale, tex_height_scale); |
208 scoped_ptr<YUVVideoDrawQuad> yuv_video_quad = YUVVideoDrawQuad::Create(); | 208 scoped_ptr<YUVVideoDrawQuad> yuv_video_quad = YUVVideoDrawQuad::Create(); |
209 yuv_video_quad->SetNew(shared_quad_state, | 209 yuv_video_quad->SetNew(shared_quad_state, |
210 quad_rect, | 210 quad_rect, |
211 opaque_rect, | 211 opaque_rect, |
212 tex_scale, | 212 tex_scale, |
213 y_plane, | 213 y_plane, |
214 u_plane, | 214 u_plane, |
215 v_plane); | 215 v_plane, |
| 216 NULL); |
216 quad_sink->Append(yuv_video_quad.PassAs<DrawQuad>(), append_quads_data); | 217 quad_sink->Append(yuv_video_quad.PassAs<DrawQuad>(), append_quads_data); |
217 break; | 218 break; |
218 } | 219 } |
219 case media::VideoFrame::RGB32: { | 220 case media::VideoFrame::RGB32: { |
220 // RGBA software decoder: a converted YUV frame (see: convert_yuv_). | 221 // RGBA software decoder: a converted YUV frame (see: convert_yuv_). |
221 const FramePlane& plane = frame_planes_[media::VideoFrame::kRGBPlane]; | 222 const FramePlane& plane = frame_planes_[media::VideoFrame::kRGBPlane]; |
222 bool premultiplied_alpha = true; | 223 bool premultiplied_alpha = true; |
223 gfx::PointF uv_top_left(0.f, 0.f); | 224 gfx::PointF uv_top_left(0.f, 0.f); |
224 gfx::PointF uv_bottom_right(tex_width_scale, tex_height_scale); | 225 gfx::PointF uv_bottom_right(tex_width_scale, tex_height_scale); |
225 float opacity[] = {1.0f, 1.0f, 1.0f, 1.0f}; | 226 float opacity[] = {1.0f, 1.0f, 1.0f, 1.0f}; |
(...skipping 245 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
471 void VideoLayerImpl::SetProviderClientImpl( | 472 void VideoLayerImpl::SetProviderClientImpl( |
472 scoped_refptr<VideoFrameProviderClientImpl> provider_client_impl) { | 473 scoped_refptr<VideoFrameProviderClientImpl> provider_client_impl) { |
473 provider_client_impl_ = provider_client_impl; | 474 provider_client_impl_ = provider_client_impl; |
474 } | 475 } |
475 | 476 |
476 const char* VideoLayerImpl::LayerTypeAsString() const { | 477 const char* VideoLayerImpl::LayerTypeAsString() const { |
477 return "VideoLayer"; | 478 return "VideoLayer"; |
478 } | 479 } |
479 | 480 |
480 } // namespace cc | 481 } // namespace cc |
OLD | NEW |