HomeSort by relevance Sort by last modified time
    Searched full:framedecoded (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/platform/image-decoders/gif/
GIFImageReader.cpp 328 // Perform decoding for this frame. frameDecoded will be true if the entire frame is decoded.
331 bool GIFFrameContext::decode(const unsigned char* data, size_t length, WebCore::GIFImageDecoder* client, bool* frameDecoded)
335 *frameDecoded = false;
364 *frameDecoded = true;
377 bool frameDecoded = false;
380 return currentFrame->decode(data(0), m_data->size(), m_client, &frameDecoded)
381 && (!frameDecoded || m_client->frameComplete(frameIndex));
GIFImageReader.h 214 bool decode(const unsigned char* data, size_t length, WebCore::GIFImageDecoder* client, bool* frameDecoded);

Completed in 38 milliseconds