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

Side by Side Diff: webrtc/media/base/videoframe.cc

Issue 2139853002: add convert_from.h include for ConvertFromI420 (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: remove comment from webrtc/common_video/video_frame_buffer.cc Created 4 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
« no previous file with comments | « no previous file | no next file » | 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 * Copyright (c) 2011 The WebRTC project authors. All Rights Reserved. 2 * Copyright (c) 2011 The WebRTC project authors. All Rights Reserved.
3 * 3 *
4 * Use of this source code is governed by a BSD-style license 4 * Use of this source code is governed by a BSD-style license
5 * that can be found in the LICENSE file in the root of the source 5 * that can be found in the LICENSE file in the root of the source
6 * tree. An additional intellectual property rights grant can be found 6 * tree. An additional intellectual property rights grant can be found
7 * in the file PATENTS. All contributing project authors may 7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree. 8 * be found in the AUTHORS file in the root of the source tree.
9 */ 9 */
10 10
11 #include "webrtc/media/base/videoframe.h" 11 #include "webrtc/media/base/videoframe.h"
12 12
13 #include <string.h> 13 #include <string.h>
14 14
15 #include "libyuv/convert_from.h"
15 #include "libyuv/compare.h" 16 #include "libyuv/compare.h"
16 #include "libyuv/planar_functions.h" 17 #include "libyuv/planar_functions.h"
17 #include "libyuv/scale.h" 18 #include "libyuv/scale.h"
18 #include "webrtc/base/arraysize.h" 19 #include "webrtc/base/arraysize.h"
19 #include "webrtc/base/checks.h" 20 #include "webrtc/base/checks.h"
20 #include "webrtc/base/logging.h" 21 #include "webrtc/base/logging.h"
21 #include "webrtc/media/base/videocommon.h" 22 #include "webrtc/media/base/videocommon.h"
22 23
23 namespace cricket { 24 namespace cricket {
24 25
(...skipping 161 matching lines...) Expand 10 before | Expand all | Expand 10 after
186 << " expected: " << expected_size 187 << " expected: " << expected_size
187 << " sample[0..3]: " << static_cast<int>(four_samples[0]) 188 << " sample[0..3]: " << static_cast<int>(four_samples[0])
188 << ", " << static_cast<int>(four_samples[1]) 189 << ", " << static_cast<int>(four_samples[1])
189 << ", " << static_cast<int>(four_samples[2]) 190 << ", " << static_cast<int>(four_samples[2])
190 << ", " << static_cast<int>(four_samples[3]); 191 << ", " << static_cast<int>(four_samples[3]);
191 } 192 }
192 return true; 193 return true;
193 } 194 }
194 195
195 } // namespace cricket 196 } // namespace cricket
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698