e24b587a00
Bug: skia:7903 Change-Id: If5acd50711ed8bd4a49efcb93db66fd3d14c8992 Reviewed-on: https://skia-review.googlesource.com/c/164681 Reviewed-by: Brian Salomon <bsalomon@google.com> Commit-Queue: Jim Van Verth <jvanverth@google.com>
62 lines
1.8 KiB
C
62 lines
1.8 KiB
C
/*
|
|
* Copyright 2016 Google Inc.
|
|
*
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
* found in the LICENSE file.
|
|
*/
|
|
|
|
#ifndef SkYUVASizeInfo_DEFINED
|
|
#define SkYUVASizeInfo_DEFINED
|
|
|
|
#include "SkImageInfo.h"
|
|
#include "SkSize.h"
|
|
|
|
struct SkYUVASizeInfo {
|
|
static constexpr auto kMaxCount = 4;
|
|
|
|
SkISize fSizes[kMaxCount];
|
|
|
|
/**
|
|
* While the widths of the Y, U, V and A planes are not restricted, the
|
|
* implementation often requires that the width of the memory allocated
|
|
* for each plane be a multiple of 8.
|
|
*
|
|
* This struct allows us to inform the client how many "widthBytes"
|
|
* that we need. Note that we use the new idea of "widthBytes"
|
|
* because this idea is distinct from "rowBytes" (used elsewhere in
|
|
* Skia). "rowBytes" allow the last row of the allocation to not
|
|
* include any extra padding, while, in this case, every single row of
|
|
* the allocation must be at least "widthBytes".
|
|
*/
|
|
size_t fWidthBytes[kMaxCount];
|
|
|
|
bool operator==(const SkYUVASizeInfo& that) const {
|
|
for (int i = 0; i < kMaxCount; ++i) {
|
|
SkASSERT((!fSizes[i].isEmpty() && fWidthBytes[i]) ||
|
|
(fSizes[i].isEmpty() && !fWidthBytes[i]));
|
|
if (fSizes[i] != that.fSizes[i] || fWidthBytes[i] != that.fWidthBytes[i]) {
|
|
return false;
|
|
}
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
size_t computeTotalBytes() const {
|
|
size_t totalBytes = 0;
|
|
|
|
for (int i = 0; i < kMaxCount; ++i) {
|
|
SkASSERT((!fSizes[i].isEmpty() && fWidthBytes[i]) ||
|
|
(fSizes[i].isEmpty() && !fWidthBytes[i]));
|
|
totalBytes += fWidthBytes[i] * fSizes[i].height();
|
|
}
|
|
|
|
return totalBytes;
|
|
}
|
|
|
|
void computePlanes(void* base, void* planes[kMaxCount]) const;
|
|
|
|
};
|
|
|
|
#endif // SkYUVASizeInfo_DEFINED
|