summaryrefslogtreecommitdiffstats
path: root/include/private
diff options
context:
space:
mode:
authorAndreas Huber <andih@google.com>2012-11-30 08:51:51 -0800
committerAndroid Git Automerger <android-git-automerger@android.com>2012-11-30 08:51:51 -0800
commitce768c847c0df30ee9725b888e95167444477e55 (patch)
tree7db050a51471dafc6fb956c32064de487f4b8d2b /include/private
parente8cb004257565111cb261f3e9c786adba881859a (diff)
parentae62b042f1da297377f40a6ad1bf22d69d348698 (diff)
downloadframeworks_av-ce768c847c0df30ee9725b888e95167444477e55.zip
frameworks_av-ce768c847c0df30ee9725b888e95167444477e55.tar.gz
frameworks_av-ce768c847c0df30ee9725b888e95167444477e55.tar.bz2
am ba6b1bc3: am e7550eb2: Merge "Initialize and copy mRotationAngle in VideoFrame"
* commit 'ba6b1bc38e0c355277f69af286469adb5f02e876': Initialize and copy mRotationAngle in VideoFrame
Diffstat (limited to 'include/private')
-rw-r--r--include/private/media/VideoFrame.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/include/private/media/VideoFrame.h b/include/private/media/VideoFrame.h
index 0ecc348..a211ed9 100644
--- a/include/private/media/VideoFrame.h
+++ b/include/private/media/VideoFrame.h
@@ -88,7 +88,8 @@ public:
class VideoFrame
{
public:
- VideoFrame(): mWidth(0), mHeight(0), mDisplayWidth(0), mDisplayHeight(0), mSize(0), mData(0) {}
+ VideoFrame(): mWidth(0), mHeight(0), mDisplayWidth(0), mDisplayHeight(0), mSize(0), mData(0),
+ mRotationAngle(0) {}
VideoFrame(const VideoFrame& copy) {
mWidth = copy.mWidth;
@@ -105,6 +106,7 @@ public:
mSize = 0;
}
}
+ mRotationAngle = copy.mRotationAngle;
}
~VideoFrame() {