OLD | NEW |
1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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 MEDIA_MOJO_SERVICES_MOJO_VIDEO_DECODER_SERVICE_H_ | 5 #ifndef MEDIA_MOJO_SERVICES_MOJO_VIDEO_DECODER_SERVICE_H_ |
6 #define MEDIA_MOJO_SERVICES_MOJO_VIDEO_DECODER_SERVICE_H_ | 6 #define MEDIA_MOJO_SERVICES_MOJO_VIDEO_DECODER_SERVICE_H_ |
7 | 7 |
8 #include <memory> | 8 #include <memory> |
9 | 9 |
10 #include "base/macros.h" | 10 #include "base/macros.h" |
11 #include "base/memory/weak_ptr.h" | 11 #include "base/memory/weak_ptr.h" |
| 12 #include "base/optional.h" |
12 #include "media/base/decode_status.h" | 13 #include "media/base/decode_status.h" |
13 #include "media/mojo/interfaces/video_decoder.mojom.h" | 14 #include "media/mojo/interfaces/video_decoder.mojom.h" |
14 | 15 |
15 namespace media { | 16 namespace media { |
16 | 17 |
17 class MojoDecoderBufferReader; | 18 class MojoDecoderBufferReader; |
18 class MojoMediaClient; | 19 class MojoMediaClient; |
19 class VideoDecoder; | 20 class VideoDecoder; |
20 class VideoFrame; | 21 class VideoFrame; |
21 | 22 |
22 // Implementation of a mojom::VideoDecoder which runs in the GPU process, | 23 // Implementation of a mojom::VideoDecoder which runs in the GPU process, |
23 // and wraps a media::VideoDecoder. | 24 // and wraps a media::VideoDecoder. |
24 class MojoVideoDecoderService : public mojom::VideoDecoder { | 25 class MojoVideoDecoderService : public mojom::VideoDecoder { |
25 public: | 26 public: |
26 explicit MojoVideoDecoderService(MojoMediaClient* mojo_media_client); | 27 explicit MojoVideoDecoderService(MojoMediaClient* mojo_media_client); |
27 ~MojoVideoDecoderService() final; | 28 ~MojoVideoDecoderService() final; |
28 | 29 |
29 // mojom::VideoDecoder implementation | 30 // mojom::VideoDecoder implementation |
30 void Construct(mojom::VideoDecoderClientAssociatedPtrInfo client, | 31 void Construct(mojom::VideoDecoderClientAssociatedPtrInfo client, |
31 mojo::ScopedDataPipeConsumerHandle decoder_buffer_pipe) final; | 32 mojo::ScopedDataPipeConsumerHandle decoder_buffer_pipe, |
| 33 mojom::CommandBufferIdPtr command_buffer_id) final; |
32 void Initialize(mojom::VideoDecoderConfigPtr config, | 34 void Initialize(mojom::VideoDecoderConfigPtr config, |
33 bool low_delay, | 35 bool low_delay, |
34 const InitializeCallback& callback) final; | 36 const InitializeCallback& callback) final; |
35 void Decode(mojom::DecoderBufferPtr buffer, | 37 void Decode(mojom::DecoderBufferPtr buffer, |
36 const DecodeCallback& callback) final; | 38 const DecodeCallback& callback) final; |
37 void Reset(const ResetCallback& callback) final; | 39 void Reset(const ResetCallback& callback) final; |
38 | 40 |
39 private: | 41 private: |
40 // Helper methods so that we can bind them with a weak pointer to avoid | 42 // Helper methods so that we can bind them with a weak pointer to avoid |
41 // running mojom::VideoDecoder callbacks after connection error happens and | 43 // running mojom::VideoDecoder callbacks after connection error happens and |
(...skipping 15 matching lines...) Expand all Loading... |
57 | 59 |
58 base::WeakPtr<MojoVideoDecoderService> weak_this_; | 60 base::WeakPtr<MojoVideoDecoderService> weak_this_; |
59 base::WeakPtrFactory<MojoVideoDecoderService> weak_factory_; | 61 base::WeakPtrFactory<MojoVideoDecoderService> weak_factory_; |
60 | 62 |
61 DISALLOW_COPY_AND_ASSIGN(MojoVideoDecoderService); | 63 DISALLOW_COPY_AND_ASSIGN(MojoVideoDecoderService); |
62 }; | 64 }; |
63 | 65 |
64 } // namespace media | 66 } // namespace media |
65 | 67 |
66 #endif // MEDIA_MOJO_SERVICES_MOJO_VIDEO_DECODER_SERVICE_H_ | 68 #endif // MEDIA_MOJO_SERVICES_MOJO_VIDEO_DECODER_SERVICE_H_ |
OLD | NEW |