Chromium Code Reviews| Index: third_party/WebKit/Source/platform/image-decoders/jpeg/JPEGImageDecoderTest.cpp |
| diff --git a/third_party/WebKit/Source/platform/image-decoders/jpeg/JPEGImageDecoderTest.cpp b/third_party/WebKit/Source/platform/image-decoders/jpeg/JPEGImageDecoderTest.cpp |
| index 9f2c660ff300aca73abfdf6e331845256eefefc4..a8e6af42b3accaabb9ec68528d19e0530e897777 100644 |
| --- a/third_party/WebKit/Source/platform/image-decoders/jpeg/JPEGImageDecoderTest.cpp |
| +++ b/third_party/WebKit/Source/platform/image-decoders/jpeg/JPEGImageDecoderTest.cpp |
| @@ -36,6 +36,7 @@ |
| #include "public/platform/WebData.h" |
| #include "public/platform/WebSize.h" |
| #include "testing/gtest/include/gtest/gtest.h" |
| +#include "wtf/ArrayBuffer.h" |
| #include "wtf/OwnPtr.h" |
| #include "wtf/PassOwnPtr.h" |
| @@ -80,15 +81,17 @@ void readYUV(size_t maxDecodedBytes, unsigned* outputYWidth, unsigned* outputYHe |
| OwnPtr<ImageDecoder> decoder = createDecoder(maxDecodedBytes); |
| decoder->setData(data.get(), true); |
| - OwnPtr<ImagePlanes> imagePlanes = adoptPtr(new ImagePlanes()); |
| - decoder->setImagePlanes(imagePlanes.release()); |
| + // Setting a dummy ImagePlanes object signals to the decoder that we want to do YUV decoding. |
| + OwnPtr<ImagePlanes> dummyImagePlanes = adoptPtr(new ImagePlanes()); |
| + decoder->setImagePlanes(dummyImagePlanes.release()); |
| + |
| bool sizeIsAvailable = decoder->isSizeAvailable(); |
| ASSERT_TRUE(sizeIsAvailable); |
| IntSize size = decoder->decodedSize(); |
| - IntSize ySize = decoder->decodedYUVSize(0, ImageDecoder::ActualSize); |
| - IntSize uSize = decoder->decodedYUVSize(1, ImageDecoder::ActualSize); |
| - IntSize vSize = decoder->decodedYUVSize(2, ImageDecoder::ActualSize); |
| + IntSize ySize = decoder->decodedYUVSize(0); |
| + IntSize uSize = decoder->decodedYUVSize(1); |
| + IntSize vSize = decoder->decodedYUVSize(2); |
| ASSERT_TRUE(size.width() == ySize.width()); |
| ASSERT_TRUE(size.height() == ySize.height()); |
| @@ -99,6 +102,21 @@ void readYUV(size_t maxDecodedBytes, unsigned* outputYWidth, unsigned* outputYHe |
| *outputYHeight = ySize.height(); |
| *outputUVWidth = uSize.width(); |
| *outputUVHeight = uSize.height(); |
| + |
| + size_t rowBytes[3]; |
| + rowBytes[0] = decoder->decodedYUVWidthBytes(0); |
| + rowBytes[1] = decoder->decodedYUVWidthBytes(1); |
| + rowBytes[2] = decoder->decodedYUVWidthBytes(2); |
| + |
| + RefPtr<ArrayBuffer> buffer(ArrayBuffer::create(rowBytes[0] * ySize.height() + rowBytes[1] * uSize.height() + rowBytes[2] * vSize.height(), 1)); |
| + void* planes[3]; |
| + planes[0] = buffer->data(); |
| + planes[1] = ((char*) planes[0]) + rowBytes[0] * ySize.height(); |
| + planes[2] = ((char*) planes[1]) + rowBytes[1] * uSize.height(); |
| + OwnPtr<ImagePlanes> imagePlanes = adoptPtr(new ImagePlanes(planes, rowBytes)); |
| + decoder->setImagePlanes(imagePlanes.release()); |
| + |
| + ASSERT_TRUE(decoder->decodeToYUV()); |
| } |
| // Tests failure on a too big image. |
| @@ -216,6 +234,13 @@ TEST(JPEGImageDecoderTest, yuv) |
| EXPECT_EQ(128u, outputUVWidth); |
| EXPECT_EQ(128u, outputUVHeight); |
| + const char* jpegFileNon8 = "/LayoutTests/fast/images/resources/cropped_mandrill.jpg"; // 439x154 |
|
Noel Gordon
2016/03/01 02:27:49
What is the meaning of "Non8" here?
msarett
2016/03/01 18:00:38
Just that the dimensions are not multiples of 8.
|
| + readYUV(LargeEnoughSize, &outputYWidth, &outputYHeight, &outputUVWidth, &outputUVHeight, jpegFileNon8); |
| + EXPECT_EQ(439u, outputYWidth); |
| + EXPECT_EQ(154u, outputYHeight); |
| + EXPECT_EQ(220u, outputUVWidth); |
| + EXPECT_EQ(77u, outputUVHeight); |
| + |
| // Make sure we revert to RGBA decoding when we're about to downscale, |
| // which can occur on memory-constrained android devices. |
| RefPtr<SharedBuffer> data = readFile(jpegFile); |