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

Unified Diff: webrtc/common_video/libyuv/libyuv_unittest.cc

Issue 2772033002: Add content type information to encoded images and corresponding rtp extension header (Closed)
Patch Set: Set EncodedImage content_type from vie_encoder Created 3 years, 9 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
Index: webrtc/common_video/libyuv/libyuv_unittest.cc
diff --git a/webrtc/common_video/libyuv/libyuv_unittest.cc b/webrtc/common_video/libyuv/libyuv_unittest.cc
index 8f421f3038d17c0f8ebad2ebc23ae241a58eaff6..f775ca631bf56ebc4ec82a80de4e858aff33d4f7 100644
--- a/webrtc/common_video/libyuv/libyuv_unittest.cc
+++ b/webrtc/common_video/libyuv/libyuv_unittest.cc
@@ -65,7 +65,8 @@ void TestLibYuv::SetUp() {
rtc::scoped_refptr<VideoFrameBuffer> buffer(
test::ReadI420Buffer(width_, height_, source_file_));
- orig_frame_.reset(new VideoFrame(buffer, kVideoRotation_0, 0));
+ orig_frame_.reset(
+ new VideoFrame(buffer, kVideoRotation_0, kVideoContent_Default, 0));
}
void TestLibYuv::TearDown() {

Powered by Google App Engine
This is Rietveld 408576698