Lines Matching refs:codec
8 #include "src/codec/SkBmpCodec.h"
14 #include "src/codec/SkBmpMaskCodec.h"
15 #include "src/codec/SkBmpRLECodec.h"
16 #include "src/codec/SkBmpStandardCodec.h"
17 #include "src/codec/SkCodecPriv.h"
486 // Set the image info and create a codec.
598 std::unique_ptr<SkCodec> codec;
599 *result = ReadHeader(stream.get(), inIco, &codec);
600 if (codec) {
601 // codec has taken ownership of stream, so we do not need to delete it.
604 return kSuccess == *result ? std::move(codec) : nullptr;