OLD | NEW |
1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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 CONTENT_COMMON_GPU_MEDIA_ANDROID_DEFERRED_RENDERING_BACKING_STRATEGY_H_ | 5 #ifndef CONTENT_COMMON_GPU_MEDIA_ANDROID_DEFERRED_RENDERING_BACKING_STRATEGY_H_ |
6 #define CONTENT_COMMON_GPU_MEDIA_ANDROID_DEFERRED_RENDERING_BACKING_STRATEGY_H_ | 6 #define CONTENT_COMMON_GPU_MEDIA_ANDROID_DEFERRED_RENDERING_BACKING_STRATEGY_H_ |
7 | 7 |
8 #include <stdint.h> | 8 #include <stdint.h> |
9 | 9 |
10 #include "base/macros.h" | 10 #include "base/macros.h" |
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
42 gfx::ScopedJavaSurface Initialize(int surface_view_id) override; | 42 gfx::ScopedJavaSurface Initialize(int surface_view_id) override; |
43 void Cleanup(bool have_context, | 43 void Cleanup(bool have_context, |
44 const AndroidVideoDecodeAccelerator::OutputBufferMap&) override; | 44 const AndroidVideoDecodeAccelerator::OutputBufferMap&) override; |
45 scoped_refptr<gfx::SurfaceTexture> GetSurfaceTexture() const override; | 45 scoped_refptr<gfx::SurfaceTexture> GetSurfaceTexture() const override; |
46 uint32_t GetTextureTarget() const override; | 46 uint32_t GetTextureTarget() const override; |
47 gfx::Size GetPictureBufferSize() const override; | 47 gfx::Size GetPictureBufferSize() const override; |
48 void UseCodecBufferForPictureBuffer(int32_t codec_buffer_index, | 48 void UseCodecBufferForPictureBuffer(int32_t codec_buffer_index, |
49 const media::PictureBuffer&) override; | 49 const media::PictureBuffer&) override; |
50 void AssignOnePictureBuffer(const media::PictureBuffer&, bool) override; | 50 void AssignOnePictureBuffer(const media::PictureBuffer&, bool) override; |
51 void ReuseOnePictureBuffer(const media::PictureBuffer&) override; | 51 void ReuseOnePictureBuffer(const media::PictureBuffer&) override; |
| 52 void ReleaseCodecBuffers( |
| 53 const AndroidVideoDecodeAccelerator::OutputBufferMap& buffers) override; |
52 void CodecChanged( | 54 void CodecChanged( |
53 media::VideoCodecBridge*, | 55 media::VideoCodecBridge*, |
54 const AndroidVideoDecodeAccelerator::OutputBufferMap&) override; | 56 const AndroidVideoDecodeAccelerator::OutputBufferMap&) override; |
55 void OnFrameAvailable() override; | 57 void OnFrameAvailable() override; |
56 bool ArePicturesOverlayable() override; | 58 bool ArePicturesOverlayable() override; |
57 void UpdatePictureBufferSize(media::PictureBuffer* picture_buffer, | 59 void UpdatePictureBufferSize(media::PictureBuffer* picture_buffer, |
58 const gfx::Size& new_size) override; | 60 const gfx::Size& new_size) override; |
59 | 61 |
60 private: | 62 private: |
61 // Release any codec buffer that is associated with the given picture buffer | 63 // Release any codec buffer that is associated with the given picture buffer |
(...skipping 30 matching lines...) Expand all Loading... |
92 scoped_refptr<gfx::SurfaceTexture> surface_texture_; | 94 scoped_refptr<gfx::SurfaceTexture> surface_texture_; |
93 | 95 |
94 media::VideoCodecBridge* media_codec_; | 96 media::VideoCodecBridge* media_codec_; |
95 | 97 |
96 DISALLOW_COPY_AND_ASSIGN(AndroidDeferredRenderingBackingStrategy); | 98 DISALLOW_COPY_AND_ASSIGN(AndroidDeferredRenderingBackingStrategy); |
97 }; | 99 }; |
98 | 100 |
99 } // namespace content | 101 } // namespace content |
100 | 102 |
101 #endif // CONTENT_COMMON_GPU_MEDIA_ANDROID_DEFERRED_RENDERING_BACKING_STRATEGY_
H_ | 103 #endif // CONTENT_COMMON_GPU_MEDIA_ANDROID_DEFERRED_RENDERING_BACKING_STRATEGY_
H_ |
OLD | NEW |