OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 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 #include "media/filters/skcanvas_video_renderer.h" | 5 #include "media/filters/skcanvas_video_renderer.h" |
6 | 6 |
7 #include "base/logging.h" | 7 #include "gpu/GLES2/gl2extchromium.h" |
| 8 #include "gpu/command_buffer/client/gles2_interface.h" |
| 9 #include "gpu/command_buffer/common/mailbox_holder.h" |
8 #include "media/base/video_frame.h" | 10 #include "media/base/video_frame.h" |
9 #include "media/base/yuv_convert.h" | 11 #include "media/base/yuv_convert.h" |
| 12 #include "skia/ext/refptr.h" |
10 #include "third_party/libyuv/include/libyuv.h" | 13 #include "third_party/libyuv/include/libyuv.h" |
11 #include "third_party/skia/include/core/SkCanvas.h" | 14 #include "third_party/skia/include/core/SkCanvas.h" |
12 #include "third_party/skia/include/core/SkImageGenerator.h" | 15 #include "third_party/skia/include/core/SkImageGenerator.h" |
13 #include "third_party/skia/include/gpu/GrContext.h" | 16 #include "third_party/skia/include/gpu/GrContext.h" |
| 17 #include "third_party/skia/include/gpu/SkGrPixelRef.h" |
14 #include "ui/gfx/skbitmap_operations.h" | 18 #include "ui/gfx/skbitmap_operations.h" |
15 | 19 |
16 // Skia internal format depends on a platform. On Android it is ABGR, on others | 20 // Skia internal format depends on a platform. On Android it is ABGR, on others |
17 // it is ARGB. | 21 // it is ARGB. |
18 #if SK_B32_SHIFT == 0 && SK_G32_SHIFT == 8 && SK_R32_SHIFT == 16 && \ | 22 #if SK_B32_SHIFT == 0 && SK_G32_SHIFT == 8 && SK_R32_SHIFT == 16 && \ |
19 SK_A32_SHIFT == 24 | 23 SK_A32_SHIFT == 24 |
20 #define LIBYUV_I420_TO_ARGB libyuv::I420ToARGB | 24 #define LIBYUV_I420_TO_ARGB libyuv::I420ToARGB |
21 #define LIBYUV_I422_TO_ARGB libyuv::I422ToARGB | 25 #define LIBYUV_I422_TO_ARGB libyuv::I422ToARGB |
22 #elif SK_R32_SHIFT == 0 && SK_G32_SHIFT == 8 && SK_B32_SHIFT == 16 && \ | 26 #elif SK_R32_SHIFT == 0 && SK_G32_SHIFT == 8 && SK_B32_SHIFT == 16 && \ |
23 SK_A32_SHIFT == 24 | 27 SK_A32_SHIFT == 24 |
(...skipping 183 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
207 row_bytes); | 211 row_bytes); |
208 video_frame->ReadPixelsFromNativeTexture(tmp); | 212 video_frame->ReadPixelsFromNativeTexture(tmp); |
209 break; | 213 break; |
210 } | 214 } |
211 default: | 215 default: |
212 NOTREACHED(); | 216 NOTREACHED(); |
213 break; | 217 break; |
214 } | 218 } |
215 } | 219 } |
216 | 220 |
| 221 bool IsSkBitmapProperlySizedTexture(const SkBitmap* bitmap, |
| 222 const gfx::Size& size) { |
| 223 return bitmap->getTexture() && bitmap->width() == size.width() && |
| 224 bitmap->height() == size.height(); |
| 225 } |
| 226 |
| 227 bool AllocateSkBitmapTexture(GrContext* gr, |
| 228 SkBitmap* bitmap, |
| 229 const gfx::Size& size) { |
| 230 DCHECK(gr); |
| 231 GrTextureDesc desc; |
| 232 // Use kRGBA_8888_GrPixelConfig, not kSkia8888_GrPixelConfig, because |
| 233 // glCopyTextureChromium doesn't support GL_BGRA_EXT as internal format. |
| 234 desc.fConfig = kRGBA_8888_GrPixelConfig; |
| 235 desc.fFlags = kRenderTarget_GrTextureFlagBit | kNoStencil_GrTextureFlagBit; |
| 236 desc.fSampleCnt = 0; |
| 237 desc.fOrigin = kTopLeft_GrSurfaceOrigin; |
| 238 desc.fWidth = size.width(); |
| 239 desc.fHeight = size.height(); |
| 240 skia::RefPtr<GrTexture> texture = skia::AdoptRef( |
| 241 gr->refScratchTexture(desc, GrContext::kExact_ScratchTexMatch)); |
| 242 if (!texture.get()) |
| 243 return false; |
| 244 |
| 245 SkImageInfo info = SkImageInfo::MakeN32Premul(desc.fWidth, desc.fHeight); |
| 246 SkGrPixelRef* pixel_ref = SkNEW_ARGS(SkGrPixelRef, (info, texture.get())); |
| 247 if (!pixel_ref) |
| 248 return false; |
| 249 bitmap->setInfo(info); |
| 250 bitmap->setPixelRef(pixel_ref)->unref(); |
| 251 return true; |
| 252 } |
| 253 |
| 254 bool CopyVideoFrameTextureToSkBitmapTexture(VideoFrame* video_frame, |
| 255 SkBitmap* bitmap, |
| 256 const Context3D& context_3d) { |
| 257 // Check if we could reuse existing texture based bitmap. |
| 258 // Otherwise, release existing texture based bitmap and allocate |
| 259 // a new one based on video size. |
| 260 if (!IsSkBitmapProperlySizedTexture(bitmap, |
| 261 video_frame->visible_rect().size())) { |
| 262 if (!AllocateSkBitmapTexture(context_3d.gr_context, bitmap, |
| 263 video_frame->visible_rect().size())) { |
| 264 return false; |
| 265 } |
| 266 } |
| 267 |
| 268 unsigned texture_id = |
| 269 static_cast<unsigned>((bitmap->getTexture())->getTextureHandle()); |
| 270 // If CopyVideoFrameTextureToGLTexture() changes the state of the |
| 271 // |texture_id|, it's needed to invalidate the state cached in skia, |
| 272 // but currently the state isn't changed. |
| 273 SkCanvasVideoRenderer::CopyVideoFrameTextureToGLTexture( |
| 274 context_3d.gl, video_frame, texture_id, 0, GL_RGBA, GL_UNSIGNED_BYTE, |
| 275 true, false); |
| 276 return true; |
| 277 } |
| 278 |
| 279 class SyncPointClientImpl : public VideoFrame::SyncPointClient { |
| 280 public: |
| 281 explicit SyncPointClientImpl(gpu::gles2::GLES2Interface* gl) : gl_(gl) {} |
| 282 ~SyncPointClientImpl() override {} |
| 283 uint32 InsertSyncPoint() override { return gl_->InsertSyncPointCHROMIUM(); } |
| 284 void WaitSyncPoint(uint32 sync_point) override { |
| 285 gl_->WaitSyncPointCHROMIUM(sync_point); |
| 286 } |
| 287 |
| 288 private: |
| 289 gpu::gles2::GLES2Interface* gl_; |
| 290 |
| 291 DISALLOW_IMPLICIT_CONSTRUCTORS(SyncPointClientImpl); |
| 292 }; |
| 293 |
217 } // anonymous namespace | 294 } // anonymous namespace |
218 | 295 |
219 // Generates an RGB image from a VideoFrame. Convert YUV to RGB plain on GPU. | 296 // Generates an RGB image from a VideoFrame. Convert YUV to RGB plain on GPU. |
220 class VideoImageGenerator : public SkImageGenerator { | 297 class VideoImageGenerator : public SkImageGenerator { |
221 public: | 298 public: |
222 VideoImageGenerator(const scoped_refptr<VideoFrame>& frame) : frame_(frame) { | 299 VideoImageGenerator(const scoped_refptr<VideoFrame>& frame) : frame_(frame) { |
223 DCHECK(frame_.get()); | 300 DCHECK(frame_.get()); |
224 } | 301 } |
225 ~VideoImageGenerator() override {} | 302 ~VideoImageGenerator() override {} |
226 | 303 |
(...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
299 DISALLOW_IMPLICIT_CONSTRUCTORS(VideoImageGenerator); | 376 DISALLOW_IMPLICIT_CONSTRUCTORS(VideoImageGenerator); |
300 }; | 377 }; |
301 | 378 |
302 SkCanvasVideoRenderer::SkCanvasVideoRenderer() | 379 SkCanvasVideoRenderer::SkCanvasVideoRenderer() |
303 : last_frame_timestamp_(media::kNoTimestamp()), | 380 : last_frame_timestamp_(media::kNoTimestamp()), |
304 frame_deleting_timer_( | 381 frame_deleting_timer_( |
305 FROM_HERE, | 382 FROM_HERE, |
306 base::TimeDelta::FromSeconds(kTemporaryResourceDeletionDelay), | 383 base::TimeDelta::FromSeconds(kTemporaryResourceDeletionDelay), |
307 this, | 384 this, |
308 &SkCanvasVideoRenderer::ResetLastFrame), | 385 &SkCanvasVideoRenderer::ResetLastFrame), |
309 accelerated_generator_(NULL), | 386 accelerated_generator_(nullptr), |
310 accelerated_last_frame_timestamp_(media::kNoTimestamp()), | 387 accelerated_last_frame_timestamp_(media::kNoTimestamp()), |
311 accelerated_frame_deleting_timer_( | 388 accelerated_frame_deleting_timer_( |
312 FROM_HERE, | 389 FROM_HERE, |
313 base::TimeDelta::FromSeconds(kTemporaryResourceDeletionDelay), | 390 base::TimeDelta::FromSeconds(kTemporaryResourceDeletionDelay), |
314 this, | 391 this, |
315 &SkCanvasVideoRenderer::ResetAcceleratedLastFrame) { | 392 &SkCanvasVideoRenderer::ResetAcceleratedLastFrame) { |
316 last_frame_.setIsVolatile(true); | 393 last_frame_.setIsVolatile(true); |
317 } | 394 } |
318 | 395 |
319 SkCanvasVideoRenderer::~SkCanvasVideoRenderer() {} | 396 SkCanvasVideoRenderer::~SkCanvasVideoRenderer() {} |
320 | 397 |
321 void SkCanvasVideoRenderer::Paint(const scoped_refptr<VideoFrame>& video_frame, | 398 void SkCanvasVideoRenderer::Paint(const scoped_refptr<VideoFrame>& video_frame, |
322 SkCanvas* canvas, | 399 SkCanvas* canvas, |
323 const gfx::RectF& dest_rect, | 400 const gfx::RectF& dest_rect, |
324 uint8 alpha, | 401 uint8 alpha, |
325 SkXfermode::Mode mode, | 402 SkXfermode::Mode mode, |
326 VideoRotation video_rotation) { | 403 VideoRotation video_rotation, |
| 404 const Context3D& context_3d) { |
327 if (alpha == 0) { | 405 if (alpha == 0) { |
328 return; | 406 return; |
329 } | 407 } |
330 | 408 |
331 SkRect dest; | 409 SkRect dest; |
332 dest.set(dest_rect.x(), dest_rect.y(), dest_rect.right(), dest_rect.bottom()); | 410 dest.set(dest_rect.x(), dest_rect.y(), dest_rect.right(), dest_rect.bottom()); |
333 | 411 |
334 SkPaint paint; | 412 SkPaint paint; |
335 paint.setAlpha(alpha); | 413 paint.setAlpha(alpha); |
336 | 414 |
337 // Paint black rectangle if there isn't a frame available or the | 415 // Paint black rectangle if there isn't a frame available or the |
338 // frame has an unexpected format. | 416 // frame has an unexpected format. |
339 if (!video_frame.get() || video_frame->natural_size().IsEmpty() || | 417 if (!video_frame.get() || video_frame->natural_size().IsEmpty() || |
340 !IsYUVOrNative(video_frame->format())) { | 418 !IsYUVOrNative(video_frame->format())) { |
341 canvas->drawRect(dest, paint); | 419 canvas->drawRect(dest, paint); |
342 canvas->flush(); | 420 canvas->flush(); |
343 return; | 421 return; |
344 } | 422 } |
345 | 423 |
346 SkBitmap* target_frame = NULL; | 424 SkBitmap* target_frame = nullptr; |
347 if (canvas->getGrContext()) { | 425 if (canvas->getGrContext()) { |
| 426 // TODO(dshwang): Android video decoder doesn't update the timestamp on a |
| 427 // VideoFrame. To reduce redundant copy, Android should update the |
| 428 // timestamp. |
348 if (accelerated_last_frame_.isNull() || | 429 if (accelerated_last_frame_.isNull() || |
| 430 #if defined(OS_ANDROID) |
| 431 video_frame->timestamp() == base::TimeDelta() || |
| 432 #endif |
349 video_frame->timestamp() != accelerated_last_frame_timestamp_) { | 433 video_frame->timestamp() != accelerated_last_frame_timestamp_) { |
350 accelerated_generator_ = new VideoImageGenerator(video_frame); | 434 if (video_frame->format() == VideoFrame::NATIVE_TEXTURE) { |
| 435 DCHECK(context_3d.gl); |
| 436 DCHECK(context_3d.gr_context); |
| 437 // Draw HW Video on HW Canvas. |
| 438 DCHECK(!accelerated_generator_); |
| 439 if (!CopyVideoFrameTextureToSkBitmapTexture( |
| 440 video_frame.get(), &accelerated_last_frame_, context_3d)) { |
| 441 NOTREACHED(); |
| 442 return; |
| 443 } |
| 444 } else { |
| 445 // Draw SW Video on HW Canvas. |
| 446 accelerated_generator_ = new VideoImageGenerator(video_frame); |
351 | 447 |
352 // Note: This takes ownership of |accelerated_generator_|. | 448 // Note: This takes ownership of |accelerated_generator_|. |
353 if (!SkInstallDiscardablePixelRef(accelerated_generator_, | 449 if (!SkInstallDiscardablePixelRef(accelerated_generator_, |
354 &accelerated_last_frame_)) { | 450 &accelerated_last_frame_)) { |
355 NOTREACHED(); | 451 NOTREACHED(); |
| 452 return; |
| 453 } |
356 } | 454 } |
357 DCHECK(video_frame->visible_rect().width() == | 455 DCHECK(video_frame->visible_rect().width() == |
358 accelerated_last_frame_.width() && | 456 accelerated_last_frame_.width() && |
359 video_frame->visible_rect().height() == | 457 video_frame->visible_rect().height() == |
360 accelerated_last_frame_.height()); | 458 accelerated_last_frame_.height()); |
361 | 459 |
362 accelerated_last_frame_timestamp_ = video_frame->timestamp(); | 460 accelerated_last_frame_timestamp_ = video_frame->timestamp(); |
363 } else { | 461 } else if (accelerated_generator_) { |
364 accelerated_generator_->set_frame(video_frame); | 462 accelerated_generator_->set_frame(video_frame); |
365 } | 463 } |
366 target_frame = &accelerated_last_frame_; | 464 target_frame = &accelerated_last_frame_; |
367 accelerated_frame_deleting_timer_.Reset(); | 465 accelerated_frame_deleting_timer_.Reset(); |
368 } else { | 466 } else { |
369 // Check if we should convert and update |last_frame_|. | 467 // Draw both SW and HW Video on SW Canvas. |
370 if (last_frame_.isNull() || | 468 if (last_frame_.isNull() || |
371 video_frame->timestamp() != last_frame_timestamp_) { | 469 video_frame->timestamp() != last_frame_timestamp_) { |
372 // Check if |bitmap| needs to be (re)allocated. | 470 // Check if |bitmap| needs to be (re)allocated. |
373 if (last_frame_.isNull() || | 471 if (last_frame_.isNull() || |
374 last_frame_.width() != video_frame->visible_rect().width() || | 472 last_frame_.width() != video_frame->visible_rect().width() || |
375 last_frame_.height() != video_frame->visible_rect().height()) { | 473 last_frame_.height() != video_frame->visible_rect().height()) { |
376 last_frame_.allocN32Pixels(video_frame->visible_rect().width(), | 474 last_frame_.allocN32Pixels(video_frame->visible_rect().width(), |
377 video_frame->visible_rect().height()); | 475 video_frame->visible_rect().height()); |
378 last_frame_.setIsVolatile(true); | 476 last_frame_.setIsVolatile(true); |
379 } | 477 } |
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
427 SkFloatToScalar(rotated_dest_size.height() / target_frame->height())); | 525 SkFloatToScalar(rotated_dest_size.height() / target_frame->height())); |
428 canvas->translate(-SkFloatToScalar(target_frame->width() * 0.5f), | 526 canvas->translate(-SkFloatToScalar(target_frame->width() * 0.5f), |
429 -SkFloatToScalar(target_frame->height() * 0.5f)); | 527 -SkFloatToScalar(target_frame->height() * 0.5f)); |
430 } | 528 } |
431 canvas->drawBitmap(*target_frame, 0, 0, &paint); | 529 canvas->drawBitmap(*target_frame, 0, 0, &paint); |
432 if (need_transform) | 530 if (need_transform) |
433 canvas->restore(); | 531 canvas->restore(); |
434 canvas->flush(); | 532 canvas->flush(); |
435 // SkCanvas::flush() causes the generator to generate SkImage, so delete | 533 // SkCanvas::flush() causes the generator to generate SkImage, so delete |
436 // |video_frame| not to be outlived. | 534 // |video_frame| not to be outlived. |
437 if (canvas->getGrContext()) | 535 if (canvas->getGrContext() && accelerated_generator_) |
438 accelerated_generator_->set_frame(NULL); | 536 accelerated_generator_->set_frame(nullptr); |
439 } | 537 } |
440 | 538 |
441 void SkCanvasVideoRenderer::Copy(const scoped_refptr<VideoFrame>& video_frame, | 539 void SkCanvasVideoRenderer::Copy(const scoped_refptr<VideoFrame>& video_frame, |
442 SkCanvas* canvas) { | 540 SkCanvas* canvas) { |
443 Paint(video_frame, | 541 Paint(video_frame, canvas, video_frame->visible_rect(), 0xff, |
444 canvas, | 542 SkXfermode::kSrc_Mode, media::VIDEO_ROTATION_0, Context3D()); |
445 video_frame->visible_rect(), | 543 } |
446 0xff, | 544 |
447 SkXfermode::kSrc_Mode, | 545 // static |
448 media::VIDEO_ROTATION_0); | 546 void SkCanvasVideoRenderer::CopyVideoFrameTextureToGLTexture( |
| 547 gpu::gles2::GLES2Interface* gl, |
| 548 VideoFrame* video_frame, |
| 549 unsigned int texture, |
| 550 unsigned int level, |
| 551 unsigned int internal_format, |
| 552 unsigned int type, |
| 553 bool premultiply_alpha, |
| 554 bool flip_y) { |
| 555 DCHECK(video_frame && video_frame->format() == VideoFrame::NATIVE_TEXTURE); |
| 556 const gpu::MailboxHolder* mailbox_holder = video_frame->mailbox_holder(); |
| 557 DCHECK(mailbox_holder->texture_target == GL_TEXTURE_2D || |
| 558 mailbox_holder->texture_target == GL_TEXTURE_EXTERNAL_OES); |
| 559 |
| 560 gl->WaitSyncPointCHROMIUM(mailbox_holder->sync_point); |
| 561 uint32 source_texture = gl->CreateAndConsumeTextureCHROMIUM( |
| 562 mailbox_holder->texture_target, mailbox_holder->mailbox.name); |
| 563 |
| 564 // The video is stored in a unmultiplied format, so premultiply |
| 565 // if necessary. |
| 566 gl->PixelStorei(GL_UNPACK_PREMULTIPLY_ALPHA_CHROMIUM, premultiply_alpha); |
| 567 // Application itself needs to take care of setting the right |flip_y| |
| 568 // value down to get the expected result. |
| 569 // "flip_y == true" means to reverse the video orientation while |
| 570 // "flip_y == false" means to keep the intrinsic orientation. |
| 571 gl->PixelStorei(GL_UNPACK_FLIP_Y_CHROMIUM, flip_y); |
| 572 gl->CopyTextureCHROMIUM(GL_TEXTURE_2D, source_texture, texture, level, |
| 573 internal_format, type); |
| 574 gl->PixelStorei(GL_UNPACK_FLIP_Y_CHROMIUM, false); |
| 575 gl->PixelStorei(GL_UNPACK_PREMULTIPLY_ALPHA_CHROMIUM, false); |
| 576 |
| 577 gl->DeleteTextures(1, &source_texture); |
| 578 gl->Flush(); |
| 579 |
| 580 SyncPointClientImpl client(gl); |
| 581 video_frame->UpdateReleaseSyncPoint(&client); |
449 } | 582 } |
450 | 583 |
451 void SkCanvasVideoRenderer::ResetLastFrame() { | 584 void SkCanvasVideoRenderer::ResetLastFrame() { |
452 last_frame_.reset(); | 585 last_frame_.reset(); |
453 last_frame_timestamp_ = media::kNoTimestamp(); | 586 last_frame_timestamp_ = media::kNoTimestamp(); |
454 } | 587 } |
455 | 588 |
456 void SkCanvasVideoRenderer::ResetAcceleratedLastFrame() { | 589 void SkCanvasVideoRenderer::ResetAcceleratedLastFrame() { |
457 accelerated_last_frame_.reset(); | 590 accelerated_last_frame_.reset(); |
458 accelerated_generator_ = nullptr; | 591 accelerated_generator_ = nullptr; |
459 accelerated_last_frame_timestamp_ = media::kNoTimestamp(); | 592 accelerated_last_frame_timestamp_ = media::kNoTimestamp(); |
460 } | 593 } |
461 | 594 |
462 } // namespace media | 595 } // namespace media |
OLD | NEW |