| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2006 Apple Computer, Inc. All rights reserved. | 2 * Copyright (C) 2006 Apple Computer, Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions | 5 * modification, are permitted provided that the following conditions |
| 6 * are met: | 6 * are met: |
| 7 * 1. Redistributions of source code must retain the above copyright | 7 * 1. Redistributions of source code must retain the above copyright |
| 8 * notice, this list of conditions and the following disclaimer. | 8 * notice, this list of conditions and the following disclaimer. |
| 9 * 2. Redistributions in binary form must reproduce the above copyright | 9 * 2. Redistributions in binary form must reproduce the above copyright |
| 10 * notice, this list of conditions and the following disclaimer in the | 10 * notice, this list of conditions and the following disclaimer in the |
| (...skipping 30 matching lines...) Expand all Loading... |
| 41 // ImageDecoder: | 41 // ImageDecoder: |
| 42 String filenameExtension() const override { return "jpg"; } | 42 String filenameExtension() const override { return "jpg"; } |
| 43 void onSetData(SharedBuffer* data) override; | 43 void onSetData(SharedBuffer* data) override; |
| 44 IntSize decodedSize() const override { return m_decodedSize; } | 44 IntSize decodedSize() const override { return m_decodedSize; } |
| 45 bool setSize(unsigned width, unsigned height) override; | 45 bool setSize(unsigned width, unsigned height) override; |
| 46 IntSize decodedYUVSize(int component) const override; | 46 IntSize decodedYUVSize(int component) const override; |
| 47 size_t decodedYUVWidthBytes(int component) const override; | 47 size_t decodedYUVWidthBytes(int component) const override; |
| 48 bool canDecodeToYUV() override; | 48 bool canDecodeToYUV() override; |
| 49 bool decodeToYUV() override; | 49 bool decodeToYUV() override; |
| 50 void setImagePlanes(PassOwnPtr<ImagePlanes>) override; | 50 void setImagePlanes(PassOwnPtr<ImagePlanes>) override; |
| 51 bool hasImagePlanes() const { return m_imagePlanes; } | 51 bool hasImagePlanes() const { return !!m_imagePlanes; } |
| 52 | 52 |
| 53 bool outputScanlines(); | 53 bool outputScanlines(); |
| 54 unsigned desiredScaleNumerator() const; | 54 unsigned desiredScaleNumerator() const; |
| 55 void complete(); | 55 void complete(); |
| 56 | 56 |
| 57 void setOrientation(ImageOrientation orientation) { m_orientation = orientat
ion; } | 57 void setOrientation(ImageOrientation orientation) { m_orientation = orientat
ion; } |
| 58 void setDecodedSize(unsigned width, unsigned height); | 58 void setDecodedSize(unsigned width, unsigned height); |
| 59 | 59 |
| 60 private: | 60 private: |
| 61 // ImageDecoder: | 61 // ImageDecoder: |
| 62 void decodeSize() override { decode(true); } | 62 void decodeSize() override { decode(true); } |
| 63 void decode(size_t) override { decode(false); } | 63 void decode(size_t) override { decode(false); } |
| 64 | 64 |
| 65 // Decodes the image. If |onlySize| is true, stops decoding after | 65 // Decodes the image. If |onlySize| is true, stops decoding after |
| 66 // calculating the image size. If decoding fails but there is no more | 66 // calculating the image size. If decoding fails but there is no more |
| 67 // data coming, sets the "decode failure" flag. | 67 // data coming, sets the "decode failure" flag. |
| 68 void decode(bool onlySize); | 68 void decode(bool onlySize); |
| 69 | 69 |
| 70 OwnPtr<JPEGImageReader> m_reader; | 70 OwnPtr<JPEGImageReader> m_reader; |
| 71 OwnPtr<ImagePlanes> m_imagePlanes; | 71 OwnPtr<ImagePlanes> m_imagePlanes; |
| 72 IntSize m_decodedSize; | 72 IntSize m_decodedSize; |
| 73 }; | 73 }; |
| 74 | 74 |
| 75 } // namespace blink | 75 } // namespace blink |
| 76 | 76 |
| 77 #endif | 77 #endif |
| OLD | NEW |