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

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

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

* commit 'e7550eb2':
  Initialize and copy mRotationAngle in VideoFrame
parents 2ee204af e7550eb2
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() {