Index: remoting/base/decoder.h |
diff --git a/remoting/base/decoder.h b/remoting/base/decoder.h |
index 9efc17e4f4c95005afe274cf58727319409fd2a4..f66a141047bdcb3312da1fab513f3ddd68506cd1 100644 |
--- a/remoting/base/decoder.h |
+++ b/remoting/base/decoder.h |
@@ -5,10 +5,12 @@ |
#ifndef REMOTING_BASE_DECODER_H_ |
#define REMOTING_BASE_DECODER_H_ |
+#include "base/basictypes.h" |
#include "base/memory/scoped_ptr.h" |
-#include "media/base/video_frame.h" |
#include "remoting/proto/video.pb.h" |
+#include "third_party/skia/include/core/SkRect.h" |
#include "third_party/skia/include/core/SkRegion.h" |
+#include "third_party/skia/include/core/SkSize.h" |
namespace remoting { |
@@ -32,41 +34,41 @@ class Decoder { |
Decoder() {} |
virtual ~Decoder() {} |
- // Initializes the decoder to draw into the given |frame|. |
- virtual void Initialize(scoped_refptr<media::VideoFrame> frame) = 0; |
+ // Initializes the decoder and sets the output dimensions. |
+ virtual void Initialize(const SkISize& screen_size) = 0; |
// Feeds more data into the decoder. |
virtual DecodeResult DecodePacket(const VideoPacket* packet) = 0; |
- // Returns the region affected by the most recent frame. Can be called only |
- // after DecodePacket returned DECODE_DONE. Caller keeps ownership of |
- // |region|. |
- virtual void GetUpdatedRegion(SkRegion* region) = 0; |
- |
- // Reset the decoder to an uninitialized state. Release all references to |
- // the initialized |frame|. Initialize() must be called before the decoder |
- // is used again. |
- virtual void Reset() = 0; |
- |
// Returns true if decoder is ready to accept data via DecodePacket. |
virtual bool IsReadyForData() = 0; |
virtual VideoPacketFormat::Encoding Encoding() = 0; |
- // Set the output dimensions for the decoder. If the dimensions are empty |
- // then the source is rendered without scaling. |
- // Output dimensions are ignored if the decoder doesn't support scaling. |
- virtual void SetOutputSize(const SkISize& size) {} |
- |
- // Set the clipping rectangle to the decoder. Decoder should respect this and |
- // only output changes in this rectangle. The new clipping rectangle will be |
- // effective on the next decoded video frame. |
- virtual void SetClipRect(const SkIRect& clip_rect) {} |
- |
// Force decoder to output a frame based on the specified |region| of the |
- // most recently decoded video frame. |region| is expressed in video frame |
- // rather than output coordinates. |
- virtual void RefreshRegion(const SkRegion& region) {} |
+ // most recently decoded video frame. |region| is expressed in output |
+ // coordinates. |
Wez
2012/02/17 23:42:17
nit: Force -> Forces
Wez
2012/02/17 23:42:17
Does this actually cause a frame to be output, or
alexeypa (please no reviews)
2012/02/21 23:00:44
Both comments: Done.
|
+ virtual void Invalidate(const SkISize& view_size, |
+ const SkRegion& region) = 0; |
+ |
+ // Copies invalidated pixels of the video frame to |image_buffer|. Both |
+ // decoding a packet or Invalidate() call can result in parts of the frame |
+ // to be invalidated. Only the pixels within |clip_area| are copied. |
Wez
2012/02/17 23:42:17
nit: And pixels outside |clip_area| remain invalid
alexeypa (please no reviews)
2012/02/21 23:00:44
Done.
|
+ // |
+ // The routine sets |output_region| to indicate the updated areas of |
+ // |image_buffer|. |output_region| is in output buffer coordinates. |
+ // |
+ // |image_buffer| is assumed to be large enough to hold entire |clip_area| |
+ // (RGBA32). The top left corner of the buffer corresponds to the top left |
+ // corner of |clip_area|. |image_stride| specifies the size of a single row |
+ // of the buffer in bytes. |
+ // |
+ // Both |clip_area| and |output_region| are expressed in output coordinates. |
+ virtual void RenderFrame(const SkISize& view_size, |
+ const SkIRect& clip_area, |
+ uint8* image_buffer, |
+ int image_stride, |
+ SkRegion* output_region) = 0; |
}; |
} // namespace remoting |