Home
last modified time | relevance | path

Searched refs:maxDecodedBytes (Results 1 – 16 of 16) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/platform/image-decoders/
DImageDecoder.cpp90 size_t maxDecodedBytes = blink::Platform::current()->maxDecodedImageBytes(); in create() local
97 … return adoptPtr(new JPEGImageDecoder(alphaOption, gammaAndColorProfileOption, maxDecodedBytes)); in create()
100 … return adoptPtr(new PNGImageDecoder(alphaOption, gammaAndColorProfileOption, maxDecodedBytes)); in create()
103 … return adoptPtr(new GIFImageDecoder(alphaOption, gammaAndColorProfileOption, maxDecodedBytes)); in create()
106 … return adoptPtr(new ICOImageDecoder(alphaOption, gammaAndColorProfileOption, maxDecodedBytes)); in create()
109 … return adoptPtr(new WEBPImageDecoder(alphaOption, gammaAndColorProfileOption, maxDecodedBytes)); in create()
112 … return adoptPtr(new BMPImageDecoder(alphaOption, gammaAndColorProfileOption, maxDecodedBytes)); in create()
DImageDecoder.h74 …Option, ImageSource::GammaAndColorProfileOption gammaAndColorProfileOption, size_t maxDecodedBytes) in ImageDecoder() argument
77 , m_maxDecodedBytes(maxDecodedBytes) in ImageDecoder()
/external/chromium_org/third_party/WebKit/Source/platform/image-decoders/jpeg/
DJPEGImageDecoderTest.cpp60 PassOwnPtr<JPEGImageDecoder> createDecoder(size_t maxDecodedBytes) in createDecoder() argument
62 …er(ImageSource::AlphaNotPremultiplied, ImageSource::GammaAndColorProfileApplied, maxDecodedBytes)); in createDecoder()
67 void downsample(size_t maxDecodedBytes, unsigned* outputWidth, unsigned* outputHeight, const char* … in downsample() argument
72 OwnPtr<JPEGImageDecoder> decoder = createDecoder(maxDecodedBytes); in downsample()
82 void readYUV(size_t maxDecodedBytes, unsigned* outputYWidth, unsigned* outputYHeight, unsigned* out… in readYUV() argument
87 OwnPtr<JPEGImageDecoder> decoder = createDecoder(maxDecodedBytes); in readYUV()
DJPEGImageDecoder.h43 …Decoder(ImageSource::AlphaOption, ImageSource::GammaAndColorProfileOption, size_t maxDecodedBytes);
DJPEGImageDecoder.cpp685 size_t maxDecodedBytes) in JPEGImageDecoder() argument
686 : ImageDecoder(alphaOption, gammaAndColorProfileOption, maxDecodedBytes) in JPEGImageDecoder()
/external/chromium_org/third_party/WebKit/Source/web/
DWebImageDecoder.cpp54 size_t maxDecodedBytes = Platform::current()->maxDecodedImageBytes(); in init() local
58 …ecoder(ImageSource::AlphaPremultiplied, ImageSource::GammaAndColorProfileApplied, maxDecodedBytes); in init()
61 …ecoder(ImageSource::AlphaPremultiplied, ImageSource::GammaAndColorProfileApplied, maxDecodedBytes); in init()
/external/chromium_org/third_party/WebKit/Source/platform/image-decoders/bmp/
DBMPImageDecoder.cpp46 size_t maxDecodedBytes) in BMPImageDecoder() argument
47 : ImageDecoder(alphaOption, gammaAndColorProfileOption, maxDecodedBytes) in BMPImageDecoder()
DBMPImageDecoder.h42 …Decoder(ImageSource::AlphaOption, ImageSource::GammaAndColorProfileOption, size_t maxDecodedBytes);
/external/chromium_org/third_party/WebKit/Source/platform/image-decoders/png/
DPNGImageDecoder.h41 …Decoder(ImageSource::AlphaOption, ImageSource::GammaAndColorProfileOption, size_t maxDecodedBytes);
DPNGImageDecoder.cpp222 size_t maxDecodedBytes) in PNGImageDecoder() argument
223 : ImageDecoder(alphaOption, gammaAndColorProfileOption, maxDecodedBytes) in PNGImageDecoder()
/external/chromium_org/third_party/WebKit/Source/platform/image-decoders/gif/
DGIFImageDecoder.h43 …Decoder(ImageSource::AlphaOption, ImageSource::GammaAndColorProfileOption, size_t maxDecodedBytes);
DGIFImageDecoder.cpp39 size_t maxDecodedBytes) in GIFImageDecoder() argument
40 : ImageDecoder(alphaOption, gammaAndColorProfileOption, maxDecodedBytes) in GIFImageDecoder()
/external/chromium_org/third_party/WebKit/Source/platform/image-decoders/webp/
DWEBPImageDecoder.h41 …Decoder(ImageSource::AlphaOption, ImageSource::GammaAndColorProfileOption, size_t maxDecodedBytes);
DWEBPImageDecoder.cpp130 size_t maxDecodedBytes) in WEBPImageDecoder() argument
131 : ImageDecoder(alphaOption, gammaAndColorProfileOption, maxDecodedBytes) in WEBPImageDecoder()
/external/chromium_org/third_party/WebKit/Source/platform/image-decoders/ico/
DICOImageDecoder.h43 …Decoder(ImageSource::AlphaOption, ImageSource::GammaAndColorProfileOption, size_t maxDecodedBytes);
DICOImageDecoder.cpp50 size_t maxDecodedBytes) in ICOImageDecoder() argument
51 : ImageDecoder(alphaOption, gammaAndColorProfileOption, maxDecodedBytes) in ICOImageDecoder()