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

Unified Diff: talk/media/base/videoframe_unittest.h

Issue 1660143004: Roll chromium_revision c6076f2..609aa24 (372974:373145) (Closed) Base URL: https://chromium.googlesource.com/external/webrtc@master
Patch Set: Fixed compile warning Created 4 years, 11 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « DEPS ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: talk/media/base/videoframe_unittest.h
diff --git a/talk/media/base/videoframe_unittest.h b/talk/media/base/videoframe_unittest.h
index 3236066bc3fd6f00bfda4ee9fb342fb3dd7330ce..372a370e540c7f6f3ef17cf95103924009a51d8f 100644
--- a/talk/media/base/videoframe_unittest.h
+++ b/talk/media/base/videoframe_unittest.h
@@ -249,7 +249,7 @@ class VideoFrameTest : public testing::Test {
}
for (uint32_t i = 0; i < width * height * bpp / 8; ++i) {
- char value = ((i / 63) & 1) ? 192 : 64;
+ uint8_t value = ((i / 63) & 1) ? 192 : 64;
ms->Write(&value, sizeof(value), NULL, NULL);
}
return ms.release();
« no previous file with comments | « DEPS ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698