Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(373)

Unified Diff: remoting/host/encoder_verbatim.h

Issue 2745006: Implement a chromoting client using X11 (Closed)
Patch Set: removed all.gyp Created 10 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « remoting/host/encoder.h ('k') | remoting/host/encoder_verbatim.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/host/encoder_verbatim.h
diff --git a/remoting/host/encoder_verbatim.h b/remoting/host/encoder_verbatim.h
index 2b5e39d06c3f8833d9b0813ce054295a08ac13ca..d7a176084876c0c9b22d6c6e45fa51f922d082ac 100644
--- a/remoting/host/encoder_verbatim.h
+++ b/remoting/host/encoder_verbatim.h
@@ -21,12 +21,12 @@ class EncoderVerbatim : public Encoder {
const uint8** input_data,
const int* strides,
bool key_frame,
- chromotocol_pb::UpdateStreamPacketHeader* header,
+ UpdateStreamPacketHeader* header,
scoped_refptr<media::DataBuffer>* output_data,
bool* encode_done,
Task* data_available_task);
virtual void SetSize(int width, int height);
- virtual void SetPixelFormat(chromotocol_pb::PixelFormat pixel_format);
+ virtual void SetPixelFormat(PixelFormat pixel_format);
private:
// Encode a single dirty rect. Called by Encode().
@@ -34,12 +34,13 @@ class EncoderVerbatim : public Encoder {
bool EncodeRect(const gfx::Rect& dirty,
const uint8** input_data,
const int* strides,
- chromotocol_pb::UpdateStreamPacketHeader* header,
+ UpdateStreamPacketHeader* header,
scoped_refptr<media::DataBuffer>* output_data);
int width_;
int height_;
int bytes_per_pixel_;
+ PixelFormat pixel_format_;
};
} // namespace remoting
« no previous file with comments | « remoting/host/encoder.h ('k') | remoting/host/encoder_verbatim.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698