Searched defs:maxDecodedBytes (Results 1 - 9 of 9) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/web/
H A DWebImageDecoder.cpp54 size_t maxDecodedBytes = Platform::current()->maxDecodedImageBytes(); local
58 m_private = new BMPImageDecoder(ImageSource::AlphaPremultiplied, ImageSource::GammaAndColorProfileApplied, maxDecodedBytes);
61 m_private = new ICOImageDecoder(ImageSource::AlphaPremultiplied, ImageSource::GammaAndColorProfileApplied, maxDecodedBytes);
/external/chromium_org/third_party/WebKit/Source/platform/image-decoders/bmp/
H A DBMPImageDecoder.cpp46 size_t maxDecodedBytes)
47 : ImageDecoder(alphaOption, gammaAndColorProfileOption, maxDecodedBytes)
44 BMPImageDecoder(ImageSource::AlphaOption alphaOption, ImageSource::GammaAndColorProfileOption gammaAndColorProfileOption, size_t maxDecodedBytes) argument
/external/chromium_org/third_party/WebKit/Source/platform/image-decoders/jpeg/
H A DJPEGImageDecoderTest.cpp60 PassOwnPtr<JPEGImageDecoder> createDecoder(size_t maxDecodedBytes) argument
62 return adoptPtr(new JPEGImageDecoder(ImageSource::AlphaNotPremultiplied, ImageSource::GammaAndColorProfileApplied, maxDecodedBytes));
67 void downsample(size_t maxDecodedBytes, unsigned* outputWidth, unsigned* outputHeight, const char* imageFilePath) argument
72 OwnPtr<JPEGImageDecoder> decoder = createDecoder(maxDecodedBytes);
82 void readYUV(size_t maxDecodedBytes, unsigned* outputYWidth, unsigned* outputYHeight, unsigned* outputUVWidth, unsigned* outputUVHeight, const char* imageFilePath) argument
87 OwnPtr<JPEGImageDecoder> decoder = createDecoder(maxDecodedBytes);
H A DJPEGImageDecoder.cpp685 size_t maxDecodedBytes)
686 : ImageDecoder(alphaOption, gammaAndColorProfileOption, maxDecodedBytes)
683 JPEGImageDecoder(ImageSource::AlphaOption alphaOption, ImageSource::GammaAndColorProfileOption gammaAndColorProfileOption, size_t maxDecodedBytes) argument
/external/chromium_org/third_party/WebKit/Source/platform/image-decoders/ico/
H A DICOImageDecoder.cpp50 size_t maxDecodedBytes)
51 : ImageDecoder(alphaOption, gammaAndColorProfileOption, maxDecodedBytes)
48 ICOImageDecoder(ImageSource::AlphaOption alphaOption, ImageSource::GammaAndColorProfileOption gammaAndColorProfileOption, size_t maxDecodedBytes) argument
/external/chromium_org/third_party/WebKit/Source/platform/image-decoders/
H A DImageDecoder.cpp90 size_t maxDecodedBytes = blink::Platform::current()->maxDecodedImageBytes(); local
97 return adoptPtr(new JPEGImageDecoder(alphaOption, gammaAndColorProfileOption, maxDecodedBytes));
100 return adoptPtr(new PNGImageDecoder(alphaOption, gammaAndColorProfileOption, maxDecodedBytes));
103 return adoptPtr(new GIFImageDecoder(alphaOption, gammaAndColorProfileOption, maxDecodedBytes));
106 return adoptPtr(new ICOImageDecoder(alphaOption, gammaAndColorProfileOption, maxDecodedBytes));
109 return adoptPtr(new WEBPImageDecoder(alphaOption, gammaAndColorProfileOption, maxDecodedBytes));
112 return adoptPtr(new BMPImageDecoder(alphaOption, gammaAndColorProfileOption, maxDecodedBytes));
H A DImageDecoder.h74 ImageDecoder(ImageSource::AlphaOption alphaOption, ImageSource::GammaAndColorProfileOption gammaAndColorProfileOption, size_t maxDecodedBytes) argument
77 , m_maxDecodedBytes(maxDecodedBytes)
/external/chromium_org/third_party/WebKit/Source/platform/image-decoders/gif/
H A DGIFImageDecoder.cpp39 size_t maxDecodedBytes)
40 : ImageDecoder(alphaOption, gammaAndColorProfileOption, maxDecodedBytes)
37 GIFImageDecoder(ImageSource::AlphaOption alphaOption, ImageSource::GammaAndColorProfileOption gammaAndColorProfileOption, size_t maxDecodedBytes) argument
/external/chromium_org/third_party/WebKit/Source/platform/image-decoders/png/
H A DPNGImageDecoder.cpp222 size_t maxDecodedBytes)
223 : ImageDecoder(alphaOption, gammaAndColorProfileOption, maxDecodedBytes)
220 PNGImageDecoder(ImageSource::AlphaOption alphaOption, ImageSource::GammaAndColorProfileOption gammaAndColorProfileOption, size_t maxDecodedBytes) argument

Completed in 103 milliseconds