Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(114)

Unified Diff: src/codec/SkWbmpCodec.cpp

Issue 1695473002: Fix colorType/alphaType checks in SkCodec (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Fix bot errors Created 4 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/codec/SkJpegCodec.cpp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/codec/SkWbmpCodec.cpp
diff --git a/src/codec/SkWbmpCodec.cpp b/src/codec/SkWbmpCodec.cpp
index 4dd0f2544d181f848dde3b0cf015967e69f12518..585603f698988d10962d10b0b58eec76fed3268a 100644
--- a/src/codec/SkWbmpCodec.cpp
+++ b/src/codec/SkWbmpCodec.cpp
@@ -30,6 +30,19 @@ static inline void setup_color_table(SkColorType colorType,
}
}
+static inline bool valid_color_type(SkColorType colorType, SkAlphaType alphaType) {
+ switch (colorType) {
+ case kN32_SkColorType:
+ case kIndex_8_SkColorType:
+ case kGray_8_SkColorType:
msarett 2016/02/11 19:13:45 Should kGray_8 also require that the alphaType is
scroggo 2016/02/12 17:13:55 Not sure - this means that they have an inconsiste
+ return true;
+ case kRGB_565_SkColorType:
+ return kOpaque_SkAlphaType == alphaType;
+ default:
+ return false;
+ }
+}
+
static bool read_byte(SkStream* stream, uint8_t* data)
{
return stream->read(data, 1) == 1;
@@ -84,16 +97,6 @@ bool SkWbmpCodec::onRewind() {
SkSwizzler* SkWbmpCodec::initializeSwizzler(const SkImageInfo& info, const SkPMColor* ctable,
const Options& opts) {
- // Create the swizzler based on the desired color type
- switch (info.colorType()) {
- case kIndex_8_SkColorType:
- case kN32_SkColorType:
- case kRGB_565_SkColorType:
- case kGray_8_SkColorType:
- break;
- default:
- return nullptr;
- }
return SkSwizzler::CreateSwizzler(SkSwizzler::kBit, ctable, info, opts);
}
@@ -124,7 +127,8 @@ SkCodec::Result SkWbmpCodec::onGetPixels(const SkImageInfo& info,
return kUnimplemented;
}
- if (!valid_alpha(info.alphaType(), this->getInfo().alphaType())) {
+ if (!valid_color_type(info.colorType(), info.alphaType()) ||
+ !valid_alpha(info.alphaType(), this->getInfo().alphaType())) {
return kInvalidConversion;
}
@@ -133,9 +137,7 @@ SkCodec::Result SkWbmpCodec::onGetPixels(const SkImageInfo& info,
// Initialize the swizzler
SkAutoTDelete<SkSwizzler> swizzler(this->initializeSwizzler(info, ctable, options));
- if (nullptr == swizzler.get()) {
- return kInvalidConversion;
- }
+ SkASSERT(swizzler);
// Perform the decode
SkISize size = info.dimensions();
@@ -188,7 +190,8 @@ SkCodec::Result SkWbmpCodec::onStartScanlineDecode(const SkImageInfo& dstInfo,
return kUnimplemented;
}
- if (!valid_alpha(dstInfo.alphaType(), this->getInfo().alphaType())) {
+ if (!valid_color_type(dstInfo.colorType(), dstInfo.alphaType()) ||
+ !valid_alpha(dstInfo.alphaType(), this->getInfo().alphaType())) {
return kInvalidConversion;
}
@@ -202,9 +205,7 @@ SkCodec::Result SkWbmpCodec::onStartScanlineDecode(const SkImageInfo& dstInfo,
// Initialize the swizzler
fSwizzler.reset(this->initializeSwizzler(dstInfo, get_color_ptr(fColorTable.get()), options));
- if (nullptr == fSwizzler.get()) {
- return kInvalidConversion;
- }
+ SkASSERT(fSwizzler);
fSrcBuffer.reset(fSrcRowBytes);
« no previous file with comments | « src/codec/SkJpegCodec.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698