Home | History | Annotate | Download | only in codec

Lines Matching full:codecs

110     SkAutoTDelete<SkTArray<SkAutoTDelete<SkCodec>, true>> codecs(
123 // stop trying to make codecs
150 codecs->push_back().reset(codec);
154 // Recognize if there are no valid codecs
155 if (0 == codecs->count()) {
156 SkCodecPrintf("Error: could not find any valid embedded ico codecs.\n");
163 for (int32_t i = 0; i < codecs->count(); i++) {
164 SkImageInfo info = codecs->operator[](i)->getInfo();
171 SkImageInfo info = codecs->operator[](maxIndex)->getInfo();
175 return new SkIcoCodec(info, codecs.detach());
183 SkTArray<SkAutoTDelete<SkCodec>, true>* codecs)
185 , fEmbeddedCodecs(codecs)