Flutter Engine
The Flutter Engine
|
Functions | |
SK_API bool | IsAvif (const void *, size_t) |
SK_API std::unique_ptr< SkCodec > | Decode (std::unique_ptr< SkStream >, SkCodec::Result *, SkCodecs::DecodeContext=nullptr) |
SK_API std::unique_ptr< SkCodec > | Decode (sk_sp< SkData >, SkCodec::Result *, SkCodecs::DecodeContext=nullptr) |
constexpr SkCodecs::Decoder | Decoder () |
std::unique_ptr< SkCodec > SkAvifDecoder::Decode | ( | sk_sp< SkData > | data, |
SkCodec::Result * | outResult, | ||
SkCodecs::DecodeContext | = nullptr |
||
) |
Definition at line 259 of file SkAvifCodec.cpp.
std::unique_ptr< SkCodec > SkAvifDecoder::Decode | ( | std::unique_ptr< SkStream > | stream, |
SkCodec::Result * | outResult, | ||
SkCodecs::DecodeContext | = nullptr |
||
) |
Attempts to decode the given bytes as a AVIF.
If the bytes are not a AVIF, returns nullptr.
DecodeContext is ignored
Definition at line 249 of file SkAvifCodec.cpp.
|
inlineconstexpr |
Definition at line 38 of file SkAvifDecoder.h.
bool SkAvifDecoder::IsAvif | ( | const void * | data, |
size_t | len | ||
) |
Returns true if this data claims to be a AVIF image.
Definition at line 245 of file SkAvifCodec.cpp.