Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 24ee6aaf authored by Andreas Huber's avatar Andreas Huber Committed by Android Git Automerger
Browse files

am ba6b1bc3: am e7550eb2: Merge "Initialize and copy mRotationAngle in VideoFrame"

* commit 'ba6b1bc3':
  Initialize and copy mRotationAngle in VideoFrame
parents 45f7c446 ba6b1bc3
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -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() {