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

Unified Diff: src/codec/SkCodec.cpp

Issue 1520403003: Prototype of RAW decoding in Skia. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Merge the change for DEPS Created 4 years, 11 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
Index: src/codec/SkCodec.cpp
diff --git a/src/codec/SkCodec.cpp b/src/codec/SkCodec.cpp
index 87a7ded7dd6bd2e0c0a6da19de1d9782a50553c3..7c12e009141a91fd7d18ccdd9587695940d0fb8f 100644
--- a/src/codec/SkCodec.cpp
+++ b/src/codec/SkCodec.cpp
@@ -18,6 +18,7 @@
#endif
#include "SkStream.h"
#include "SkWebpCodec.h"
+#include "SkRawCodec.h"
struct DecoderProc {
bool (*IsFormat)(const void*, size_t);
@@ -85,6 +86,11 @@ SkCodec* SkCodec::NewFromStream(SkStream* stream,
break;
}
}
+
+ // Try to treat the input as RAW if all the other checks failed.
+ if (!codec) {
scroggo 2016/01/07 13:53:20 I think this is a TAB? We use spaces instead.
yujieqin 2016/01/07 15:52:01 Done.
+ codec.reset(SkRawCodec::NewFromStream(streamDeleter.detach()));
+ }
}
// Set the max size at 128 megapixels (512 MB for kN32).

Powered by Google App Engine
This is Rietveld 408576698