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

Side by Side Diff: remoting/client/frame_consumer.h

Issue 23677011: Byte-swap the video frame pixels before passing them to Java. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase (for Skia removal) Created 7 years, 2 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 unified diff | Download patch
OLDNEW
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_CLIENT_FRAME_CONSUMER_H_ 5 #ifndef REMOTING_CLIENT_FRAME_CONSUMER_H_
6 #define REMOTING_CLIENT_FRAME_CONSUMER_H_ 6 #define REMOTING_CLIENT_FRAME_CONSUMER_H_
7 7
8 #include "base/basictypes.h" 8 #include "base/basictypes.h"
9 9
10 namespace webrtc { 10 namespace webrtc {
11 class DesktopFrame; 11 class DesktopFrame;
12 class DesktopRect; 12 class DesktopRect;
13 class DesktopRegion; 13 class DesktopRegion;
14 class DesktopSize; 14 class DesktopSize;
15 class DesktopVector; 15 class DesktopVector;
16 } // namespace webrtc 16 } // namespace webrtc
17 17
18 namespace remoting { 18 namespace remoting {
19 19
20 class FrameConsumer { 20 class FrameConsumer {
21 public: 21 public:
22
23 // List of supported pixel formats needed by various platforms.
24 enum PixelFormat {
25 FORMAT_BGRA, // Used by the Pepper plugin.
26 FORMAT_RGBA, // Used for Android's Bitmap class.
27 };
28
22 // Accepts a buffer to be painted to the screen. The buffer's dimensions and 29 // Accepts a buffer to be painted to the screen. The buffer's dimensions and
23 // relative position within the frame are specified by |clip_area|. Only 30 // relative position within the frame are specified by |clip_area|. Only
24 // pixels falling within |region| and the current clipping area are painted. 31 // pixels falling within |region| and the current clipping area are painted.
25 // The function assumes that the passed buffer was scaled to fit a window 32 // The function assumes that the passed buffer was scaled to fit a window
26 // having |view_size| dimensions. 33 // having |view_size| dimensions.
27 // 34 //
28 // N.B. Both |clip_area| and |region| are in output coordinates relative to 35 // N.B. Both |clip_area| and |region| are in output coordinates relative to
29 // the frame. 36 // the frame.
30 virtual void ApplyBuffer(const webrtc::DesktopSize& view_size, 37 virtual void ApplyBuffer(const webrtc::DesktopSize& view_size,
31 const webrtc::DesktopRect& clip_area, 38 const webrtc::DesktopRect& clip_area,
32 webrtc::DesktopFrame* buffer, 39 webrtc::DesktopFrame* buffer,
33 const webrtc::DesktopRegion& region) = 0; 40 const webrtc::DesktopRegion& region) = 0;
34 41
35 // Accepts a buffer that couldn't be used for drawing for any reason (shutdown 42 // Accepts a buffer that couldn't be used for drawing for any reason (shutdown
36 // is in progress, the view area has changed, etc.). The accepted buffer can 43 // is in progress, the view area has changed, etc.). The accepted buffer can
37 // be freed or reused for another drawing operation. 44 // be freed or reused for another drawing operation.
38 virtual void ReturnBuffer(webrtc::DesktopFrame* buffer) = 0; 45 virtual void ReturnBuffer(webrtc::DesktopFrame* buffer) = 0;
39 46
40 // Set the dimension of the entire host screen. 47 // Set the dimension of the entire host screen.
41 virtual void SetSourceSize(const webrtc::DesktopSize& source_size, 48 virtual void SetSourceSize(const webrtc::DesktopSize& source_size,
42 const webrtc::DesktopVector& dpi) = 0; 49 const webrtc::DesktopVector& dpi) = 0;
43 50
51 // Returns the preferred pixel encoding for the platform. This may be called
52 // from any thread.
53 virtual PixelFormat GetPixelFormat() = 0;
54
44 protected: 55 protected:
45 FrameConsumer() {} 56 FrameConsumer() {}
46 virtual ~FrameConsumer() {} 57 virtual ~FrameConsumer() {}
47 58
48 private: 59 private:
49 DISALLOW_COPY_AND_ASSIGN(FrameConsumer); 60 DISALLOW_COPY_AND_ASSIGN(FrameConsumer);
50 }; 61 };
51 62
52 } // namespace remoting 63 } // namespace remoting
53 64
54 #endif // REMOTING_CLIENT_FRAME_CONSUMER_H_ 65 #endif // REMOTING_CLIENT_FRAME_CONSUMER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698