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

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

Issue 2878009: Add flag to decoder class to flip the image vertically since that is required... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 10 years, 5 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | remoting/client/decoder_verbatim.cc » ('j') | remoting/client/decoder_verbatim.cc » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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_DECODER_VERBATIM_H_ 5 #ifndef REMOTING_CLIENT_DECODER_VERBATIM_H_
6 #define REMOTING_CLIENT_DECODER_VERBATIM_H_ 6 #define REMOTING_CLIENT_DECODER_VERBATIM_H_
7 7
8 #include "remoting/client/decoder.h" 8 #include "remoting/client/decoder.h"
9 9
10 namespace remoting { 10 namespace remoting {
(...skipping 12 matching lines...) Expand all
23 23
24 private: 24 private:
25 // Tasks to call when decode is done. 25 // Tasks to call when decode is done.
26 scoped_ptr<Task> partial_decode_done_; 26 scoped_ptr<Task> partial_decode_done_;
27 scoped_ptr<Task> decode_done_; 27 scoped_ptr<Task> decode_done_;
28 28
29 // The video frame to write to. 29 // The video frame to write to.
30 scoped_refptr<media::VideoFrame> frame_; 30 scoped_refptr<media::VideoFrame> frame_;
31 UpdatedRects* updated_rects_; 31 UpdatedRects* updated_rects_;
32 32
33 // True if we should reverse the rows when copying data into the target
34 // frame buffer.
35 bool reverse_rows_;
36
33 DISALLOW_COPY_AND_ASSIGN(DecoderVerbatim); 37 DISALLOW_COPY_AND_ASSIGN(DecoderVerbatim);
34 }; 38 };
35 39
36 } // namespace remoting 40 } // namespace remoting
37 41
38 #endif // REMOTING_CLIENT_DECODER_VERBATIM_H_ 42 #endif // REMOTING_CLIENT_DECODER_VERBATIM_H_
OLDNEW
« no previous file with comments | « no previous file | remoting/client/decoder_verbatim.cc » ('j') | remoting/client/decoder_verbatim.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698