OLD | NEW |
---|---|
1 /* | 1 /* |
2 * Copyright (C) 2006 Samuel Weinig (sam.weinig@gmail.com) | 2 * Copyright (C) 2006 Samuel Weinig (sam.weinig@gmail.com) |
3 * Copyright (C) 2004, 2005, 2006, 2008 Apple Inc. All rights reserved. | 3 * Copyright (C) 2004, 2005, 2006, 2008 Apple Inc. All rights reserved. |
4 * | 4 * |
5 * Redistribution and use in source and binary forms, with or without | 5 * Redistribution and use in source and binary forms, with or without |
6 * modification, are permitted provided that the following conditions | 6 * modification, are permitted provided that the following conditions |
7 * are met: | 7 * are met: |
8 * 1. Redistributions of source code must retain the above copyright | 8 * 1. Redistributions of source code must retain the above copyright |
9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
10 * 2. Redistributions in binary form must reproduce the above copyright | 10 * 2. Redistributions in binary form must reproduce the above copyright |
(...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
111 | 111 |
112 void BitmapImage::destroyDecodedData() | 112 void BitmapImage::destroyDecodedData() |
113 { | 113 { |
114 m_cachedFrame.clear(); | 114 m_cachedFrame.clear(); |
115 for (size_t i = 0; i < m_frames.size(); ++i) | 115 for (size_t i = 0; i < m_frames.size(); ++i) |
116 m_frames[i].clear(true); | 116 m_frames[i].clear(true); |
117 m_source.clearCacheExceptFrame(kNotFound); | 117 m_source.clearCacheExceptFrame(kNotFound); |
118 notifyMemoryChanged(); | 118 notifyMemoryChanged(); |
119 } | 119 } |
120 | 120 |
121 PassRefPtr<SharedBuffer> BitmapImage::data() | |
122 { | |
123 if (PassRefPtr<SharedBuffer> data = cachedData()) | |
haraken
2016/06/23 01:26:41
PassRefPtr<SharedBuffer> => RefPtr<SharedBuffer>
hajimehoshi
2016/06/23 09:23:12
Done.
| |
124 return data; | |
125 return m_source.data(); | |
126 } | |
127 | |
128 PassRefPtr<SharedBuffer> BitmapImage::cachedData() | |
129 { | |
130 return Image::data(); | |
131 } | |
132 | |
121 void BitmapImage::notifyMemoryChanged() | 133 void BitmapImage::notifyMemoryChanged() |
122 { | 134 { |
123 if (getImageObserver()) | 135 if (getImageObserver()) |
124 getImageObserver()->decodedSizeChangedTo(this, totalFrameBytes()); | 136 getImageObserver()->decodedSizeChangedTo(this, totalFrameBytes()); |
125 } | 137 } |
126 | 138 |
127 size_t BitmapImage::totalFrameBytes() | 139 size_t BitmapImage::totalFrameBytes() |
128 { | 140 { |
129 const size_t numFrames = frameCount(); | 141 const size_t numFrames = frameCount(); |
130 size_t totalBytes = 0; | 142 size_t totalBytes = 0; |
(...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
211 // cleared-on-a-previous-pass) frames! | 223 // cleared-on-a-previous-pass) frames! |
212 if (m_frames[i].m_haveMetadata && !m_frames[i].m_isComplete) { | 224 if (m_frames[i].m_haveMetadata && !m_frames[i].m_isComplete) { |
213 m_frames[i].clear(true); | 225 m_frames[i].clear(true); |
214 if (i == m_cachedFrameIndex) | 226 if (i == m_cachedFrameIndex) |
215 m_cachedFrame.clear(); | 227 m_cachedFrame.clear(); |
216 } | 228 } |
217 } | 229 } |
218 | 230 |
219 // Feed all the data we've seen so far to the image decoder. | 231 // Feed all the data we've seen so far to the image decoder. |
220 m_allDataReceived = allDataReceived; | 232 m_allDataReceived = allDataReceived; |
221 ASSERT(data()); | 233 if (cachedData()) { |
222 m_source.setData(*data(), allDataReceived); | 234 m_source.setData(*cachedData(), allDataReceived); |
235 if (m_source.hasData()) { | |
236 resetEncodedImageData(); | |
haraken
2016/06/23 01:26:40
Add a comment and explain what this is doing and w
hajimehoshi
2016/06/23 09:23:13
Done.
| |
237 DCHECK(!cachedData()); | |
haraken
2016/06/23 01:26:40
Would it be clearer to rename cachedData to encode
hajimehoshi
2016/06/23 09:23:13
Hmm, I want to emphasize BitmapImage no longer has
| |
238 } | |
239 } | |
223 | 240 |
224 m_haveFrameCount = false; | 241 m_haveFrameCount = false; |
225 return isSizeAvailable(); | 242 return isSizeAvailable(); |
226 } | 243 } |
227 | 244 |
228 bool BitmapImage::hasColorProfile() const | 245 bool BitmapImage::hasColorProfile() const |
229 { | 246 { |
230 return m_source.hasColorProfile(); | 247 return m_source.hasColorProfile(); |
231 } | 248 } |
232 | 249 |
(...skipping 357 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
590 | 607 |
591 // We need to draw this frame if we advanced to it while not skipping, or if | 608 // We need to draw this frame if we advanced to it while not skipping, or if |
592 // while trying to skip frames we hit the last frame and thus had to stop. | 609 // while trying to skip frames we hit the last frame and thus had to stop. |
593 if (skippingFrames != advancedAnimation) | 610 if (skippingFrames != advancedAnimation) |
594 getImageObserver()->animationAdvanced(this); | 611 getImageObserver()->animationAdvanced(this); |
595 | 612 |
596 return advancedAnimation; | 613 return advancedAnimation; |
597 } | 614 } |
598 | 615 |
599 } // namespace blink | 616 } // namespace blink |
OLD | NEW |