Searched defs:imagePlanes (Results 1 - 3 of 3) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/platform/image-decoders/jpeg/
H A DJPEGImageDecoderTest.cpp90 OwnPtr<ImagePlanes> imagePlanes = adoptPtr(new ImagePlanes()); local
91 decoder->setImagePlanes(imagePlanes.release());
H A DJPEGImageDecoder.cpp788 void JPEGImageDecoder::setImagePlanes(PassOwnPtr<ImagePlanes> imagePlanes) argument
790 m_imagePlanes = imagePlanes;
847 static bool outputRawData(JPEGImageReader* reader, ImagePlanes* imagePlanes) argument
862 JSAMPROW outputY = static_cast<JSAMPROW>(imagePlanes->plane(0));
863 JSAMPROW outputU = static_cast<JSAMPROW>(imagePlanes->plane(1));
864 JSAMPROW outputV = static_cast<JSAMPROW>(imagePlanes->plane(2));
865 size_t rowBytesY = imagePlanes->rowBytes(0);
866 size_t rowBytesU = imagePlanes->rowBytes(1);
867 size_t rowBytesV = imagePlanes->rowBytes(2);
/external/chromium_org/third_party/WebKit/Source/platform/graphics/
H A DImageFrameGenerator.cpp182 OwnPtr<ImagePlanes> imagePlanes = adoptPtr(new ImagePlanes(planes, rowBytes)); local
183 decoder->setImagePlanes(imagePlanes.release());

Completed in 127 milliseconds