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

Side by Side Diff: remoting/base/capture_data.h

Issue 4255001: Revert 64672 - Cleanups in the video encoding decoding code. Reenable VP8.... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: 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
« no previous file with comments | « no previous file | remoting/base/codec_test.cc » ('j') | no next file with comments »
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_BASE_CAPTURE_DATA_H_ 5 #ifndef REMOTING_BASE_CAPTURE_DATA_H_
6 #define REMOTING_BASE_CAPTURE_DATA_H_ 6 #define REMOTING_BASE_CAPTURE_DATA_H_
7 7
8 #include <vector> 8 #include <vector>
9 9
10 #include "base/basictypes.h" 10 #include "base/basictypes.h"
11 #include "base/ref_counted.h" 11 #include "base/ref_counted.h"
12 #include "remoting/base/types.h" 12 #include "remoting/base/types.h"
13 #include "remoting/proto/video.pb.h" 13 #include "remoting/proto/event.pb.h"
14 14
15 namespace remoting { 15 namespace remoting {
16 16
17 struct DataPlanes { 17 struct DataPlanes {
18 DataPlanes(); 18 DataPlanes();
19 19
20 static const int kPlaneCount = 3; 20 static const int kPlaneCount = 3;
21 uint8* data[kPlaneCount]; 21 uint8* data[kPlaneCount];
22 int strides[kPlaneCount]; 22 int strides[kPlaneCount];
23 }; 23 };
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
57 int height_; 57 int height_;
58 PixelFormat pixel_format_; 58 PixelFormat pixel_format_;
59 59
60 friend class base::RefCountedThreadSafe<CaptureData>; 60 friend class base::RefCountedThreadSafe<CaptureData>;
61 virtual ~CaptureData(); 61 virtual ~CaptureData();
62 }; 62 };
63 63
64 } // namespace remoting 64 } // namespace remoting
65 65
66 #endif // REMOTING_BASE_CAPTURE_DATA_H_ 66 #endif // REMOTING_BASE_CAPTURE_DATA_H_
OLDNEW
« no previous file with comments | « no previous file | remoting/base/codec_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698