Chromium Code Reviews| OLD | NEW |
|---|---|
| (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_GPU_AVDA_OVERLAY_HELPER_H_ | |
| 6 #define MEDIA_GPU_AVDA_OVERLAY_HELPER_H_ | |
| 7 | |
| 8 #include "base/bind.h" | |
| 9 #include "base/macros.h" | |
| 10 #include "base/memory/weak_ptr.h" | |
| 11 #include "media/base/android/android_overlay.h" | |
| 12 #include "media/base/android/android_overlay_factory.h" | |
| 13 #include "media/gpu/media_gpu_export.h" | |
| 14 | |
| 15 namespace media { | |
| 16 | |
| 17 // Manage details of which overlay to use for video playback, if any. | |
| 18 class MEDIA_GPU_EXPORT AVDAOverlayHelper { | |
| 19 public: | |
| 20 // Notify the client that |overlay| is ready for use. The client may get | |
| 21 // the surface immediatly. | |
| 22 using UseOverlayCB = | |
| 23 base::Callback<void(std::unique_ptr<AndroidOverlay> overlay)>; | |
| 24 | |
| 25 // Notify the client that the most recently provided overlay should be | |
| 26 // discarded. The overlay is still valid, but we recommend against | |
| 27 // using it soon, in favor of a SurfaceTexture. | |
| 28 // TODO(liberato): document the differences between this an 'Immediately' | |
| 29 using UseSurfaceTextureCB = base::Callback<void(void)>; | |
| 30 | |
| 31 // Callback that mirrors AndroidOverlay::DestroyedCB . The surface | |
| 32 // that was provided with |overlay| is being destroyed. | |
| 33 using StopUsingOverlayImmediatelyCB = base::Callback<void(AndroidOverlay*)>; | |
| 34 | |
| 35 virtual ~AVDAOverlayHelper() {} | |
| 36 | |
| 37 // Notify us that our client is ready for overlays. We will send it a | |
| 38 // callback telling it whether to start with a SurfaceTexture or overlay, | |
| 39 // either synchronously or post one very soon. | |
| 40 virtual void Startup( | |
| 41 const UseOverlayCB& use_overlay_cb, | |
| 42 const UseSurfaceTextureCB& use_surface_texture_cb, | |
| 43 const StopUsingOverlayImmediatelyCB& stop_immediately_cb, | |
| 44 std::unique_ptr<AndroidOverlayFactory> initial_factory) = 0; | |
| 45 | |
| 46 // Notify us that a new factory has arrived. May be null to indicate that | |
| 47 // WMPI has revoked the most recent factory. | |
| 48 virtual void OnOverlayFactory( | |
| 49 std::unique_ptr<AndroidOverlayFactory> factory) = 0; | |
| 50 | |
| 51 protected: | |
|
DaleCurtis
2017/04/20 19:10:43
Per style guide this should be public IIRC.
liberato (no reviews please)
2017/04/20 22:01:39
Done.
| |
| 52 AVDAOverlayHelper() {} | |
| 53 | |
| 54 private: | |
| 55 DISALLOW_COPY_AND_ASSIGN(AVDAOverlayHelper); | |
| 56 }; | |
| 57 | |
| 58 } // namespace media | |
| 59 | |
| 60 #endif // MEDIA_GPU_AVDA_OVERLAY_HELPER_H_ | |
| OLD | NEW |