commit | 414dda1a10d465ee61b0a52f036b854dc0e00739 | [log] [tgz] |
---|---|---|
author | perkj <perkj@webrtc.org> | Mon Jul 04 01:45:23 2016 -0700 |
committer | Commit bot <commit-bot@chromium.org> | Mon Jul 04 08:45:28 2016 +0000 |
tree | 9c15ec95196ef6dc7c5e663471bb9322abfc6dee | |
parent | 2c332bb6829c43fdc5017fa4d783208631625d27 [diff] [blame] |
Change VCMFrameBuffer and VCMEncodedFrame to use rotation from base class EncodedImage. BUG=webrtc:5687 Review-Url: https://codereview.webrtc.org/2037633002 Cr-Commit-Position: refs/heads/master@{#13376}
diff --git a/webrtc/modules/video_coding/frame_buffer.cc b/webrtc/modules/video_coding/frame_buffer.cc index 61db0d1..1c7301f 100644 --- a/webrtc/modules/video_coding/frame_buffer.cc +++ b/webrtc/modules/video_coding/frame_buffer.cc
@@ -153,7 +153,7 @@ // (HEVC)). if (packet.markerBit) { RTC_DCHECK(!_rotation_set); - _rotation = packet.video_header.rotation; + rotation_ = packet.video_header.rotation; _rotation_set = true; }