OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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_BASE_ENCODER_H_ | 5 #ifndef REMOTING_BASE_ENCODER_H_ |
6 #define REMOTING_BASE_ENCODER_H_ | 6 #define REMOTING_BASE_ENCODER_H_ |
7 | 7 |
8 #include "base/basictypes.h" | 8 #include "base/basictypes.h" |
9 #include "base/callback.h" | 9 #include "base/callback.h" |
10 #include "media/base/data_buffer.h" | 10 #include "media/base/data_buffer.h" |
11 #include "remoting/base/protocol/chromotocol.pb.h" | 11 #include "remoting/base/protocol/chromotocol.pb.h" |
12 | 12 |
13 namespace media { | 13 namespace media { |
14 class DataBuffer; | 14 class DataBuffer; |
15 } | 15 } |
16 | 16 |
17 namespace remoting { | 17 namespace remoting { |
18 | 18 |
19 class CaptureData; | 19 class CaptureData; |
20 class HostMessage; | |
21 | 20 |
22 // A class to perform the task of encoding a continous stream of | 21 // A class to perform the task of encoding a continous stream of |
23 // images. | 22 // images. |
24 // This class operates asynchronously to enable maximum throughput. | 23 // This class operates asynchronously to enable maximum throughput. |
25 class Encoder { | 24 class Encoder { |
26 public: | 25 public: |
27 | 26 |
28 // EncodingState is a bitfield that tracks the state of the encoding. | 27 // EncodingState is a bitfield that tracks the state of the encoding. |
29 // An encoding that consists of a single block could concievably be starting | 28 // An encoding that consists of a single block could concievably be starting |
30 // inprogress and ended at the same time. | 29 // inprogress and ended at the same time. |
31 enum { | 30 enum { |
32 EncodingStarting = 1 << 0, | 31 EncodingStarting = 1 << 0, |
33 EncodingInProgress = 1 << 1, | 32 EncodingInProgress = 1 << 1, |
34 EncodingEnded = 1 << 2 | 33 EncodingEnded = 1 << 2 |
35 }; | 34 }; |
36 typedef int EncodingState; | 35 typedef int EncodingState; |
37 | 36 |
38 // DataAvailableCallback is called as blocks of data are made available | 37 // DataAvailableCallback is called as blocks of data are made available |
39 // from the encoder. Data made available by the encoder is in the form | 38 // from the encoder. Data made available by the encoder is in the form |
40 // of HostMessage to reduce the amount of memory copies. | 39 // of HostMessage to reduce the amount of memory copies. |
41 // The callback takes ownership of the HostMessage and is responsible for | 40 // The callback takes ownership of the HostMessage and is responsible for |
42 // deleting it. | 41 // deleting it. |
43 typedef Callback2<HostMessage*, EncodingState>::Type DataAvailableCallback; | 42 typedef Callback2<ChromotingHostMessage*, |
| 43 EncodingState>::Type DataAvailableCallback; |
44 | 44 |
45 virtual ~Encoder() {} | 45 virtual ~Encoder() {} |
46 | 46 |
47 // Encode an image stored in |capture_data|. | 47 // Encode an image stored in |capture_data|. |
48 // | 48 // |
49 // If |key_frame| is true, the encoder should not reference | 49 // If |key_frame| is true, the encoder should not reference |
50 // previous encode and encode the full frame. | 50 // previous encode and encode the full frame. |
51 // | 51 // |
52 // When encoded data is available, partial or full |data_available_callback| | 52 // When encoded data is available, partial or full |data_available_callback| |
53 // is called. | 53 // is called. |
54 virtual void Encode(scoped_refptr<CaptureData> capture_data, | 54 virtual void Encode(scoped_refptr<CaptureData> capture_data, |
55 bool key_frame, | 55 bool key_frame, |
56 DataAvailableCallback* data_available_callback) = 0; | 56 DataAvailableCallback* data_available_callback) = 0; |
57 }; | 57 }; |
58 | 58 |
59 } // namespace remoting | 59 } // namespace remoting |
60 | 60 |
61 #endif // REMOTING_BASE_ENCODER_H_ | 61 #endif // REMOTING_BASE_ENCODER_H_ |
OLD | NEW |