/src/skia/modules/skottie/fuzz/FuzzSkottieJSON.cpp
Line | Count | Source |
1 | | /* |
2 | | * Copyright 2018 Google, LLC |
3 | | * |
4 | | * Use of this source code is governed by a BSD-style license that can be |
5 | | * found in the LICENSE file. |
6 | | */ |
7 | | |
8 | | #include "include/core/SkStream.h" |
9 | | #include "modules/skottie/include/Skottie.h" |
10 | | #include "tools/fonts/FontToolUtils.h" |
11 | | |
12 | 10.0k | void FuzzSkottieJSON(const uint8_t *data, size_t size) { |
13 | 10.0k | SkMemoryStream stream(data, size); |
14 | 10.0k | auto animation = skottie::Animation::Make(&stream); |
15 | 10.0k | if (!animation) { |
16 | 905 | return; |
17 | 905 | } |
18 | 9.10k | animation->seek(0.1337f); // A "nothing up my sleeve" number |
19 | 9.10k | } |
20 | | |
21 | | #if defined(SK_BUILD_FOR_LIBFUZZER) |
22 | 31.5k | extern "C" int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) { |
23 | 31.5k | ToolUtils::UsePortableFontMgr(); |
24 | 31.5k | FuzzSkottieJSON(data, size); |
25 | 31.5k | return 0; |
26 | 31.5k | } |
27 | | #endif |