summaryrefslogtreecommitdiffstats
path: root/include/private
diff options
context:
space:
mode:
authorAndreas Huber <andih@google.com>2012-11-30 08:50:09 -0800
committerAndroid Git Automerger <android-git-automerger@android.com>2012-11-30 08:50:09 -0800
commitba6b1bc38e0c355277f69af286469adb5f02e876 (patch)
treecaef7ed2c1440c9724b9b1588acd51c5f6e20d1b /include/private
parent2ee204af3d715b983bc4806fb830feefd401fd4b (diff)
parente7550eb2805d864253f88ea2ced57014d6140e55 (diff)
downloadframeworks_av-ba6b1bc38e0c355277f69af286469adb5f02e876.zip
frameworks_av-ba6b1bc38e0c355277f69af286469adb5f02e876.tar.gz
frameworks_av-ba6b1bc38e0c355277f69af286469adb5f02e876.tar.bz2
am e7550eb2: Merge "Initialize and copy mRotationAngle in VideoFrame"
* commit 'e7550eb2805d864253f88ea2ced57014d6140e55': 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() {