Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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_CAST_SENDER_VIDEO_ENCODER_H_ | 5 #ifndef MEDIA_CAST_SENDER_VIDEO_ENCODER_H_ |
| 6 #define MEDIA_CAST_SENDER_VIDEO_ENCODER_H_ | 6 #define MEDIA_CAST_SENDER_VIDEO_ENCODER_H_ |
| 7 | 7 |
| 8 #include "base/callback.h" | 8 #include "base/callback.h" |
| 9 #include "base/memory/ref_counted.h" | 9 #include "base/memory/ref_counted.h" |
| 10 #include "base/memory/scoped_ptr.h" | 10 #include "base/memory/scoped_ptr.h" |
| 11 #include "base/memory/weak_ptr.h" | 11 #include "base/memory/weak_ptr.h" |
| 12 #include "base/time/time.h" | 12 #include "base/time/time.h" |
| 13 #include "media/base/video_frame.h" | 13 #include "media/base/video_frame.h" |
| 14 #include "media/cast/cast_config.h" | 14 #include "media/cast/cast_config.h" |
| 15 #include "media/cast/cast_environment.h" | 15 #include "media/cast/cast_environment.h" |
| 16 | 16 |
| 17 namespace media { | 17 namespace media { |
| 18 namespace cast { | 18 namespace cast { |
| 19 | 19 |
| 20 class VideoFrameFactory; | 20 class VideoFrameFactory; |
| 21 | 21 |
| 22 // All these functions are called from the main cast thread. | 22 // All these functions are called from the main cast thread. |
| 23 class VideoEncoder { | 23 class VideoEncoder { |
| 24 public: | 24 public: |
| 25 typedef base::Callback<void(scoped_ptr<EncodedFrame>)> FrameEncodedCallback; | 25 typedef base::Callback<void(scoped_ptr<EncodedFrame>)> FrameEncodedCallback; |
| 26 | 26 |
| 27 virtual ~VideoEncoder() {} | 27 virtual ~VideoEncoder() {} |
| 28 | 28 |
| 29 // Returns true if the size of video frames passed in successive calls to | |
| 30 // EncodedVideoFrame() can vary. | |
| 31 virtual bool CanEncodeVariedFrameSizes() const; | |
|
hubbe
2015/01/31 00:55:51
I think it would be better to make this pure virtu
miu
2015/01/31 04:53:04
Done.
| |
| 32 | |
| 29 // If true is returned, the Encoder has accepted the request and will process | 33 // If true is returned, the Encoder has accepted the request and will process |
| 30 // it asynchronously, running |frame_encoded_callback| on the MAIN | 34 // it asynchronously, running |frame_encoded_callback| on the MAIN |
| 31 // CastEnvironment thread with the result. If false is returned, nothing | 35 // CastEnvironment thread with the result. If false is returned, nothing |
| 32 // happens and the callback will not be run. | 36 // happens and the callback will not be run. |
| 33 virtual bool EncodeVideoFrame( | 37 virtual bool EncodeVideoFrame( |
| 34 const scoped_refptr<media::VideoFrame>& video_frame, | 38 const scoped_refptr<media::VideoFrame>& video_frame, |
| 35 const base::TimeTicks& reference_time, | 39 const base::TimeTicks& reference_time, |
| 36 const FrameEncodedCallback& frame_encoded_callback) = 0; | 40 const FrameEncodedCallback& frame_encoded_callback) = 0; |
| 37 | 41 |
| 38 // Inform the encoder about the new target bit rate. | 42 // Inform the encoder about the new target bit rate. |
| 39 virtual void SetBitRate(int new_bit_rate) = 0; | 43 virtual void SetBitRate(int new_bit_rate) = 0; |
| 40 | 44 |
| 41 // Inform the encoder to encode the next frame as a key frame. | 45 // Inform the encoder to encode the next frame as a key frame. |
| 42 virtual void GenerateKeyFrame() = 0; | 46 virtual void GenerateKeyFrame() = 0; |
| 43 | 47 |
| 44 // Inform the encoder to only reference frames older or equal to frame_id; | 48 // Inform the encoder to only reference frames older or equal to frame_id; |
| 45 virtual void LatestFrameIdToReference(uint32 frame_id) = 0; | 49 virtual void LatestFrameIdToReference(uint32 frame_id) = 0; |
| 46 | 50 |
| 47 // Creates a |VideoFrameFactory| object to vend |VideoFrame| object with | 51 // Creates a |VideoFrameFactory| object to vend |VideoFrame| object with |
| 48 // encoder affinity (defined as offering some sort of performance benefit). | 52 // encoder affinity (defined as offering some sort of performance benefit). |
| 49 // This is an optional capability and by default returns null. | 53 // This is an optional capability and by default returns null. |
| 50 virtual scoped_ptr<VideoFrameFactory> CreateVideoFrameFactory(); | 54 virtual scoped_ptr<VideoFrameFactory> CreateVideoFrameFactory(); |
| 51 }; | 55 }; |
| 52 | 56 |
| 53 } // namespace cast | 57 } // namespace cast |
| 54 } // namespace media | 58 } // namespace media |
| 55 | 59 |
| 56 #endif // MEDIA_CAST_SENDER_VIDEO_ENCODER_H_ | 60 #endif // MEDIA_CAST_SENDER_VIDEO_ENCODER_H_ |
| OLD | NEW |