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

Side by Side Diff: talk/media/base/yuvframegenerator.h

Issue 1345433002: Add RTC_ prefix to contructormagic macros. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Formatting fix. Created 5 years, 3 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
« no previous file with comments | « talk/media/base/videocapturer.h ('k') | talk/media/devices/filevideocapturer.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * libjingle 2 * libjingle
3 * Copyright 2010 Google Inc. 3 * Copyright 2010 Google Inc.
4 * 4 *
5 * Redistribution and use in source and binary forms, with or without 5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are met: 6 * modification, are permitted provided that the following conditions are met:
7 * 7 *
8 * 1. Redistributions of source code must retain the above copyright notice, 8 * 1. Redistributions of source code must retain the above copyright notice,
9 * this list of conditions and the following disclaimer. 9 * this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright notice, 10 * 2. Redistributions in binary form must reproduce the above copyright notice,
(...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after
90 int height_; 90 int height_;
91 int frame_index_; 91 int frame_index_;
92 int frame_data_size_; 92 int frame_data_size_;
93 uint8* y_data_; 93 uint8* y_data_;
94 uint8* u_data_; 94 uint8* u_data_;
95 uint8* v_data_; 95 uint8* v_data_;
96 96
97 int barcode_start_x_; 97 int barcode_start_x_;
98 int barcode_start_y_; 98 int barcode_start_y_;
99 99
100 DISALLOW_COPY_AND_ASSIGN(YuvFrameGenerator); 100 RTC_DISALLOW_COPY_AND_ASSIGN(YuvFrameGenerator);
101 }; 101 };
102 102
103 } // namespace cricket 103 } // namespace cricket
104 104
105 #endif // TALK_MEDIA_BASE_YUVFRAMEGENERATOR_H_ 105 #endif // TALK_MEDIA_BASE_YUVFRAMEGENERATOR_H_
OLDNEW
« no previous file with comments | « talk/media/base/videocapturer.h ('k') | talk/media/devices/filevideocapturer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698