| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 REMOTING_CODEC_VIDEO_ENCODER_VPX_H_ | 5 #ifndef REMOTING_CODEC_VIDEO_ENCODER_VPX_H_ |
| 6 #define REMOTING_CODEC_VIDEO_ENCODER_VPX_H_ | 6 #define REMOTING_CODEC_VIDEO_ENCODER_VPX_H_ |
| 7 | 7 |
| 8 #include "base/callback.h" | 8 #include "base/callback.h" |
| 9 #include "remoting/codec/scoped_vpx_codec.h" | 9 #include "remoting/codec/scoped_vpx_codec.h" |
| 10 #include "remoting/codec/video_encoder.h" | 10 #include "remoting/codec/video_encoder.h" |
| 11 | 11 |
| 12 typedef struct vpx_image vpx_image_t; | 12 typedef struct vpx_image vpx_image_t; |
| 13 | 13 |
| 14 namespace webrtc { | 14 namespace webrtc { |
| 15 class DesktopRegion; | 15 class DesktopRegion; |
| 16 class DesktopSize; | 16 class DesktopSize; |
| 17 } // namespace webrtc | 17 } // namespace webrtc |
| 18 | 18 |
| 19 namespace remoting { | 19 namespace remoting { |
| 20 | 20 |
| 21 class VideoEncoderVpx : public VideoEncoder { | 21 class VideoEncoderVpx : public VideoEncoder { |
| 22 public: | 22 public: |
| 23 // Create encoder for the specified protocol. | 23 // Create encoder for the specified protocol. |
| 24 static scoped_ptr<VideoEncoderVpx> CreateForVP8(); | 24 static scoped_ptr<VideoEncoderVpx> CreateForVP8(); |
| 25 static scoped_ptr<VideoEncoderVpx> CreateForVP9(); |
| 25 | 26 |
| 26 virtual ~VideoEncoderVpx(); | 27 virtual ~VideoEncoderVpx(); |
| 27 | 28 |
| 28 // VideoEncoder interface. | 29 // VideoEncoder interface. |
| 29 virtual scoped_ptr<VideoPacket> Encode( | 30 virtual scoped_ptr<VideoPacket> Encode( |
| 30 const webrtc::DesktopFrame& frame) OVERRIDE; | 31 const webrtc::DesktopFrame& frame) OVERRIDE; |
| 31 | 32 |
| 32 private: | 33 private: |
| 33 typedef base::Callback<ScopedVpxCodec(const webrtc::DesktopSize&)> | 34 typedef base::Callback<ScopedVpxCodec(const webrtc::DesktopSize&)> |
| 34 InitializeCodecCallback; | 35 InitializeCodecCallback; |
| (...skipping 23 matching lines...) Expand all Loading... |
| 58 | 59 |
| 59 // Buffer for storing the yuv image. | 60 // Buffer for storing the yuv image. |
| 60 scoped_ptr<uint8[]> yuv_image_; | 61 scoped_ptr<uint8[]> yuv_image_; |
| 61 | 62 |
| 62 DISALLOW_COPY_AND_ASSIGN(VideoEncoderVpx); | 63 DISALLOW_COPY_AND_ASSIGN(VideoEncoderVpx); |
| 63 }; | 64 }; |
| 64 | 65 |
| 65 } // namespace remoting | 66 } // namespace remoting |
| 66 | 67 |
| 67 #endif // REMOTING_CODEC_VIDEO_ENCODER_VP8_H_ | 68 #endif // REMOTING_CODEC_VIDEO_ENCODER_VP8_H_ |
| OLD | NEW |