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

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

Issue 4476003: Add VideoPacket struct for video packets. Refactor Decode interface to use it. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fixed compilation on windows and mac Created 10 years, 1 month 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 | Annotate | Revision Log
OLDNEW
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_CLIENT_RECTANGLE_UPDATE_DECODER_H 5 #ifndef REMOTING_CLIENT_RECTANGLE_UPDATE_DECODER_H
6 #define REMOTING_CLIENT_RECTANGLE_UPDATE_DECODER_H 6 #define REMOTING_CLIENT_RECTANGLE_UPDATE_DECODER_H
7 7
8 #include "base/scoped_ptr.h" 8 #include "base/scoped_ptr.h"
9 #include "base/task.h" 9 #include "base/task.h"
10 #include "gfx/size.h"
10 #include "media/base/video_frame.h" 11 #include "media/base/video_frame.h"
11 #include "remoting/base/decoder.h" // For UpdatedRects
12 12
13 class MessageLoop; 13 class MessageLoop;
14 14
15 namespace remoting { 15 namespace remoting {
16 16
17 class ChromotocolConfig;
17 class Decoder; 18 class Decoder;
18 class FrameConsumer; 19 class FrameConsumer;
19 class VideoPacketFormat; 20 class VideoPacketFormat;
20 class VideoPacket; 21 class VideoPacket;
21 22
22 // TODO(ajwong): Re-examine this API, especially with regards to how error 23 // TODO(ajwong): Re-examine this API, especially with regards to how error
23 // conditions on each step are reported. Should they be CHECKs? Logs? Other? 24 // conditions on each step are reported. Should they be CHECKs? Logs? Other?
25 // TODO(sergeyu): Rename this class.
24 class RectangleUpdateDecoder { 26 class RectangleUpdateDecoder {
25 public: 27 public:
26 RectangleUpdateDecoder(MessageLoop* message_loop, 28 RectangleUpdateDecoder(MessageLoop* message_loop,
27 FrameConsumer* consumer); 29 FrameConsumer* consumer);
28 ~RectangleUpdateDecoder(); 30 ~RectangleUpdateDecoder();
29 31
32 // Initializes decoder with the infromation from the protocol config.
33 void Initialize(const ChromotocolConfig* config);
34
30 // Decodes the contents of |packet| calling OnPartialFrameOutput() in the 35 // Decodes the contents of |packet| calling OnPartialFrameOutput() in the
31 // regsitered as data is avaialable. DecodePacket may keep a reference to 36 // regsitered as data is avaialable. DecodePacket may keep a reference to
32 // |packet| so the |packet| must remain alive and valid until |done| is 37 // |packet| so the |packet| must remain alive and valid until |done| is
33 // executed. 38 // executed.
34 // 39 //
35 // TODO(ajwong): Should packet be a const pointer to make the lifetime 40 // TODO(ajwong): Should packet be a const pointer to make the lifetime
36 // more clear? 41 // more clear?
37 void DecodePacket(const VideoPacket& packet, Task* done); 42 void DecodePacket(const VideoPacket* packet, Task* done);
38 43
39 private: 44 private:
40 static bool IsValidPacket(const VideoPacket& packet); 45 void InitializeDecoder(Task* done);
41 46
42 void InitializeDecoder(const VideoPacketFormat& format, Task* done); 47 void ProcessPacketData(const VideoPacket* packet, Task* done);
43
44 void ProcessPacketData(const VideoPacket& packet, Task* done);
45 48
46 // Pointers to infrastructure objects. Not owned. 49 // Pointers to infrastructure objects. Not owned.
47 MessageLoop* message_loop_; 50 MessageLoop* message_loop_;
48 FrameConsumer* consumer_; 51 FrameConsumer* consumer_;
49 52
53 gfx::Size screen_size_;
54
50 scoped_ptr<Decoder> decoder_; 55 scoped_ptr<Decoder> decoder_;
51 UpdatedRects updated_rects_;
52 56
53 // Framebuffer for the decoder. 57 // Framebuffer for the decoder.
54 scoped_refptr<media::VideoFrame> frame_; 58 scoped_refptr<media::VideoFrame> frame_;
55 }; 59 };
56 60
57 } // namespace remoting 61 } // namespace remoting
58 62
59 DISABLE_RUNNABLE_METHOD_REFCOUNT(remoting::RectangleUpdateDecoder); 63 DISABLE_RUNNABLE_METHOD_REFCOUNT(remoting::RectangleUpdateDecoder);
60 64
61 #endif // REMOTING_CLIENT_RECTANGLE_UPDATE_DECODER_H 65 #endif // REMOTING_CLIENT_RECTANGLE_UPDATE_DECODER_H
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698