| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright 2007 The Android Open Source Project | 2 * Copyright 2007 The Android Open Source Project |
| 3 * | 3 * |
| 4 * Use of this source code is governed by a BSD-style license that can be | 4 * Use of this source code is governed by a BSD-style license that can be |
| 5 * found in the LICENSE file. | 5 * found in the LICENSE file. |
| 6 */ | 6 */ |
| 7 | 7 |
| 8 | 8 |
| 9 #include "SkImageEncoder.h" | 9 #include "SkImageEncoder.h" |
| 10 #include "SkColorPriv.h" | 10 #include "SkColorPriv.h" |
| 11 #include "SkDither.h" | 11 #include "SkDither.h" |
| 12 #include "SkStream.h" | 12 #include "SkStream.h" |
| 13 #include "SkTemplates.h" | 13 #include "SkTemplates.h" |
| 14 #include "SkTime.h" | 14 #include "SkTime.h" |
| 15 #include "SkUtils.h" | 15 #include "SkUtils.h" |
| 16 #include "SkRTConf.h" |
| 16 #include "SkRect.h" | 17 #include "SkRect.h" |
| 17 #include "SkCanvas.h" | 18 #include "SkCanvas.h" |
| 18 | 19 |
| 19 | 20 |
| 20 #include <stdio.h> | 21 #include <stdio.h> |
| 21 #include "SkJPEGWriteUtility.h" | 22 #include "SkJPEGWriteUtility.h" |
| 22 extern "C" { | 23 extern "C" { |
| 23 #include "jpeglib.h" | 24 #include "jpeglib.h" |
| 24 #include "jerror.h" | 25 #include "jerror.h" |
| 25 } | 26 } |
| (...skipping 149 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 175 | 176 |
| 176 /////////////////////////////////////////////////////////////////////////////// | 177 /////////////////////////////////////////////////////////////////////////////// |
| 177 DEFINE_ENCODER_CREATOR(JPEGImageEncoder); | 178 DEFINE_ENCODER_CREATOR(JPEGImageEncoder); |
| 178 /////////////////////////////////////////////////////////////////////////////// | 179 /////////////////////////////////////////////////////////////////////////////// |
| 179 | 180 |
| 180 static SkImageEncoder* sk_libjpeg_efactory(SkImageEncoder::Type t) { | 181 static SkImageEncoder* sk_libjpeg_efactory(SkImageEncoder::Type t) { |
| 181 return (SkImageEncoder::kJPEG_Type == t) ? new SkJPEGImageEncoder : nullptr; | 182 return (SkImageEncoder::kJPEG_Type == t) ? new SkJPEGImageEncoder : nullptr; |
| 182 } | 183 } |
| 183 | 184 |
| 184 static SkImageEncoder_EncodeReg gEReg(sk_libjpeg_efactory); | 185 static SkImageEncoder_EncodeReg gEReg(sk_libjpeg_efactory); |
| OLD | NEW |