| 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 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 CodecChanged(media::VideoCodecBridge*) override; | 52 void CodecChanged(media::VideoCodecBridge*) override; |
| 53 void ReleaseCodecBuffers( |
| 54 const AndroidVideoDecodeAccelerator::OutputBufferMap& buffers) override; |
| 53 void OnFrameAvailable() override; | 55 void OnFrameAvailable() override; |
| 54 bool ArePicturesOverlayable() override; | 56 bool ArePicturesOverlayable() override; |
| 55 void UpdatePictureBufferSize(media::PictureBuffer* picture_buffer, | 57 void UpdatePictureBufferSize(media::PictureBuffer* picture_buffer, |
| 56 const gfx::Size& new_size) override; | 58 const gfx::Size& new_size) override; |
| 57 | 59 |
| 58 private: | 60 private: |
| 59 // Release any codec buffer that is associated with the given picture buffer | 61 // Release any codec buffer that is associated with the given picture buffer |
| 60 // back to the codec. It is okay if there is no such buffer. | 62 // back to the codec. It is okay if there is no such buffer. |
| 61 void ReleaseCodecBufferForPicture(const media::PictureBuffer& picture_buffer); | 63 void ReleaseCodecBufferForPicture(const media::PictureBuffer& picture_buffer); |
| 62 | 64 |
| (...skipping 28 matching lines...) Expand all Loading... |
| 91 scoped_refptr<gfx::SurfaceTexture> surface_texture_; | 93 scoped_refptr<gfx::SurfaceTexture> surface_texture_; |
| 92 | 94 |
| 93 media::VideoCodecBridge* media_codec_; | 95 media::VideoCodecBridge* media_codec_; |
| 94 | 96 |
| 95 DISALLOW_COPY_AND_ASSIGN(AndroidDeferredRenderingBackingStrategy); | 97 DISALLOW_COPY_AND_ASSIGN(AndroidDeferredRenderingBackingStrategy); |
| 96 }; | 98 }; |
| 97 | 99 |
| 98 } // namespace content | 100 } // namespace content |
| 99 | 101 |
| 100 #endif // CONTENT_COMMON_GPU_MEDIA_ANDROID_DEFERRED_RENDERING_BACKING_STRATEGY_
H_ | 102 #endif // CONTENT_COMMON_GPU_MEDIA_ANDROID_DEFERRED_RENDERING_BACKING_STRATEGY_
H_ |
| OLD | NEW |