| Index: src/codec/SkCodec.cpp
|
| diff --git a/src/codec/SkCodec.cpp b/src/codec/SkCodec.cpp
|
| index 7bc9146041e7f62b590f82ca44fdf2e3ff19f22e..c4e488565e698d30c044270458cbf93cc45ec597 100644
|
| --- a/src/codec/SkCodec.cpp
|
| +++ b/src/codec/SkCodec.cpp
|
| @@ -13,6 +13,7 @@
|
| #include "SkCodec_libpng.h"
|
| #include "SkCodec_wbmp.h"
|
| #include "SkCodecPriv.h"
|
| +#include "SkJpegCodec.h"
|
| #include "SkStream.h"
|
|
|
| struct DecoderProc {
|
| @@ -22,6 +23,7 @@ struct DecoderProc {
|
|
|
| static const DecoderProc gDecoderProcs[] = {
|
| { SkPngCodec::IsPng, SkPngCodec::NewFromStream },
|
| + { SkJpegCodec::IsJpeg, SkJpegCodec::NewFromStream },
|
| { SkGifCodec::IsGif, SkGifCodec::NewFromStream },
|
| { SkIcoCodec::IsIco, SkIcoCodec::NewFromStream },
|
| { SkBmpCodec::IsBmp, SkBmpCodec::NewFromStream },
|
|
|