Bug 1215089 - P2: Add mDepth member to YCbCr data structure. r=kamidphish

MozReview-Commit-ID: BNLawJOfj3w

--HG--
extra : rebase_source : 6cd0336506a8feda874f6bd6525da73a745d5100
This commit is contained in:
Jean-Yves Avenard 2017-06-29 23:09:20 +02:00
Родитель 4bac0ed257
Коммит 89b1091f27
3 изменённых файлов: 4 добавлений и 0 удалений

Просмотреть файл

@ -253,6 +253,7 @@ ConstructPlanarYCbCrData(const VideoInfo& aInfo,
data.mPicSize = aPicture.Size();
data.mStereoMode = aInfo.mStereoMode;
data.mYUVColorSpace = aBuffer.mYUVColorSpace;
data.mDepth = aBuffer.mDepth;
return data;
}

Просмотреть файл

@ -466,6 +466,7 @@ public:
Plane mPlanes[3];
YUVColorSpace mYUVColorSpace = YUVColorSpace::BT601;
uint32_t mDepth = 8;
};
class Listener

Просмотреть файл

@ -744,6 +744,7 @@ struct PlanarYCbCrData {
gfx::IntSize mPicSize;
StereoMode mStereoMode;
YUVColorSpace mYUVColorSpace;
uint32_t mDepth;
gfx::IntRect GetPictureRect() const {
return gfx::IntRect(mPicX, mPicY,
@ -757,6 +758,7 @@ struct PlanarYCbCrData {
, mCbCrStride(0), mCbCrSize(0, 0) , mCbSkip(0), mCrSkip(0)
, mPicX(0), mPicY(0), mPicSize(0, 0), mStereoMode(StereoMode::MONO)
, mYUVColorSpace(YUVColorSpace::BT601)
, mDepth(8)
{}
};