diff options
author | Lei Zhang <thestig@chromium.org> | 2018-08-13 20:36:16 +0000 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2018-08-13 20:36:16 +0000 |
commit | d801c9c9caddf3941f6844fab58b19261d7d3cad (patch) | |
tree | 745db126f620e06dadab32fd71ead7bc8ca2dede /core/fxcodec/gif/cfx_gifcontext.cpp | |
parent | 30029419ad4b9e5cd382767a8645677afbeff7fd (diff) | |
download | pdfium-d801c9c9caddf3941f6844fab58b19261d7d3cad.tar.xz |
Implement CFX_CodecMemory.
This class is much simpler than CFX_MemoryStream and does only what
CFX_BmpDecompressor and CFX_GifContext needs. Swap out CFX_MemoryStream
and remove CFX_MemoryStream::Seek().
BUG=pdfium:263
Change-Id: Ifd8ce4d2b6c9fedd6ec842d46f54fc8e654fbca7
Reviewed-on: https://pdfium-review.googlesource.com/39880
Commit-Queue: Lei Zhang <thestig@chromium.org>
Reviewed-by: Ryan Harrison <rharrison@chromium.org>
Diffstat (limited to 'core/fxcodec/gif/cfx_gifcontext.cpp')
-rw-r--r-- | core/fxcodec/gif/cfx_gifcontext.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/core/fxcodec/gif/cfx_gifcontext.cpp b/core/fxcodec/gif/cfx_gifcontext.cpp index 44c2c654f0..4083072fbe 100644 --- a/core/fxcodec/gif/cfx_gifcontext.cpp +++ b/core/fxcodec/gif/cfx_gifcontext.cpp @@ -343,8 +343,7 @@ CFX_GifDecodeStatus CFX_GifContext::LoadFrame(int32_t frame_num) { } void CFX_GifContext::SetInputBuffer(uint8_t* src_buf, uint32_t src_size) { - input_buffer_ = - pdfium::MakeRetain<CFX_MemoryStream>(src_buf, src_size, false); + input_buffer_ = pdfium::MakeRetain<CFX_CodecMemory>(src_buf, src_size); } uint32_t CFX_GifContext::GetAvailInput(uint8_t** avail_buf) const { |