// Copyright (c) the JPEG XL Project Authors. All rights reserved. // // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. #include #include "lib/extras/dec/color_description.h" namespace jxl { int TestOneInput(const uint8_t* data, size_t size) { std::string description(reinterpret_cast(data), size); JxlColorEncoding c; (void)ParseDescription(description, &c); return 0; } } // namespace jxl extern "C" int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size) { return jxl::TestOneInput(data, size); }