| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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_FILTERS_FAKE_VIDEO_DECODER_H_ | 5 #ifndef MEDIA_FILTERS_FAKE_VIDEO_DECODER_H_ |
| 6 #define MEDIA_FILTERS_FAKE_VIDEO_DECODER_H_ | 6 #define MEDIA_FILTERS_FAKE_VIDEO_DECODER_H_ |
| 7 | 7 |
| 8 #include <list> | 8 #include <list> |
| 9 | 9 |
| 10 #include "base/bind.h" | 10 #include "base/bind.h" |
| 11 #include "base/callback.h" | 11 #include "base/callback.h" |
| 12 #include "base/callback_helpers.h" | 12 #include "base/callback_helpers.h" |
| 13 #include "base/memory/weak_ptr.h" | 13 #include "base/memory/weak_ptr.h" |
| 14 #include "media/base/callback_holder.h" | 14 #include "media/base/callback_holder.h" |
| 15 #include "media/base/decoder_buffer.h" | 15 #include "media/base/decoder_buffer.h" |
| 16 #include "media/base/pipeline_status.h" | 16 #include "media/base/pipeline_status.h" |
| 17 #include "media/base/video_decoder.h" | 17 #include "media/base/video_decoder.h" |
| 18 #include "media/base/video_decoder_config.h" | 18 #include "media/base/video_decoder_config.h" |
| 19 #include "media/base/video_frame.h" | 19 #include "media/base/video_frame.h" |
| 20 #include "ui/gfx/size.h" | 20 #include "ui/gfx/size.h" |
| 21 | 21 |
| 22 using base::ResetAndReturn; | 22 using base::ResetAndReturn; |
| 23 | 23 |
| 24 namespace base { | 24 namespace base { |
| 25 class MessageLoopProxy; | 25 class SingleThreadTaskRunner; |
| 26 } | 26 } |
| 27 | 27 |
| 28 namespace media { | 28 namespace media { |
| 29 | 29 |
| 30 class FakeVideoDecoder : public VideoDecoder { | 30 class FakeVideoDecoder : public VideoDecoder { |
| 31 public: | 31 public: |
| 32 // Constructs an object with a decoding delay of |decoding_delay| frames. | 32 // Constructs an object with a decoding delay of |decoding_delay| frames. |
| 33 explicit FakeVideoDecoder(int decoding_delay); | 33 explicit FakeVideoDecoder(int decoding_delay); |
| 34 virtual ~FakeVideoDecoder(); | 34 virtual ~FakeVideoDecoder(); |
| 35 | 35 |
| (...skipping 28 matching lines...) Expand all Loading... |
| 64 | 64 |
| 65 // Callback for updating |total_bytes_decoded_|. | 65 // Callback for updating |total_bytes_decoded_|. |
| 66 void OnFrameDecoded(int buffer_size, | 66 void OnFrameDecoded(int buffer_size, |
| 67 const DecodeCB& read_cb, | 67 const DecodeCB& read_cb, |
| 68 Status status, | 68 Status status, |
| 69 const scoped_refptr<VideoFrame>& video_frame); | 69 const scoped_refptr<VideoFrame>& video_frame); |
| 70 | 70 |
| 71 void DoReset(); | 71 void DoReset(); |
| 72 void DoStop(); | 72 void DoStop(); |
| 73 | 73 |
| 74 scoped_refptr<base::MessageLoopProxy> message_loop_; | 74 scoped_refptr<base::SingleThreadTaskRunner> task_runner_; |
| 75 base::WeakPtrFactory<FakeVideoDecoder> weak_factory_; | 75 base::WeakPtrFactory<FakeVideoDecoder> weak_factory_; |
| 76 base::WeakPtr<FakeVideoDecoder> weak_this_; | 76 base::WeakPtr<FakeVideoDecoder> weak_this_; |
| 77 | 77 |
| 78 const int decoding_delay_; | 78 const int decoding_delay_; |
| 79 | 79 |
| 80 State state_; | 80 State state_; |
| 81 | 81 |
| 82 CallbackHolder<PipelineStatusCB> init_cb_; | 82 CallbackHolder<PipelineStatusCB> init_cb_; |
| 83 CallbackHolder<DecodeCB> decode_cb_; | 83 CallbackHolder<DecodeCB> decode_cb_; |
| 84 CallbackHolder<base::Closure> reset_cb_; | 84 CallbackHolder<base::Closure> reset_cb_; |
| 85 CallbackHolder<base::Closure> stop_cb_; | 85 CallbackHolder<base::Closure> stop_cb_; |
| 86 | 86 |
| 87 VideoDecoderConfig current_config_; | 87 VideoDecoderConfig current_config_; |
| 88 | 88 |
| 89 std::list<scoped_refptr<VideoFrame> > decoded_frames_; | 89 std::list<scoped_refptr<VideoFrame> > decoded_frames_; |
| 90 | 90 |
| 91 int total_bytes_decoded_; | 91 int total_bytes_decoded_; |
| 92 | 92 |
| 93 DISALLOW_COPY_AND_ASSIGN(FakeVideoDecoder); | 93 DISALLOW_COPY_AND_ASSIGN(FakeVideoDecoder); |
| 94 }; | 94 }; |
| 95 | 95 |
| 96 } // namespace media | 96 } // namespace media |
| 97 | 97 |
| 98 #endif // MEDIA_FILTERS_FAKE_VIDEO_DECODER_H_ | 98 #endif // MEDIA_FILTERS_FAKE_VIDEO_DECODER_H_ |
| OLD | NEW |