mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-25 18:07:31 +09:00
Issue #1820 - Part 5: Add mBitDepth field to VideoInfo.
This commit is contained in:
parent
3eafe55b6e
commit
a4e69db6a4
1 changed files with 4 additions and 0 deletions
|
|
@ -213,6 +213,7 @@ public:
|
|||
, mCodecSpecificConfig(aOther.mCodecSpecificConfig)
|
||||
, mExtraData(aOther.mExtraData)
|
||||
, mRotation(aOther.mRotation)
|
||||
, mBitDepth(aOther.mBitDepth)
|
||||
, mImageRect(aOther.mImageRect)
|
||||
{
|
||||
}
|
||||
|
|
@ -304,6 +305,9 @@ public:
|
|||
// get correct view.
|
||||
Rotation mRotation;
|
||||
|
||||
// Bits per channel -- Should be 8, 10 or 12. Default value is 8.
|
||||
uint8_t mBitDepth = 8;
|
||||
|
||||
private:
|
||||
// mImage may be cropped; currently only used with the WebM container.
|
||||
// A negative width or height indicate that no cropping is to occur.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue