diff options
author | Tom Sepez <tsepez@chromium.org> | 2018-08-24 19:45:09 +0000 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2018-08-24 19:45:09 +0000 |
commit | 16d18d935d055b74e05f615c0325318a329a7fe1 (patch) | |
tree | bce3c35b6db03cedd537a67a28cf91eb0b502b1c /core/fxcodec/codec/ccodec_gifmodule.cpp | |
parent | 1cb4d6b14cc9375dc04f57d3f2149eccb9e327a8 (diff) | |
download | pdfium-16d18d935d055b74e05f615c0325318a329a7fe1.tar.xz |
Use span<uint8_t> in more fxcodec code.
There are also small tweaks in tests to ensure strict order of
stack variable lifetimes.
Change-Id: Ic9d5c6a2bdd378b517be627f8e29f725bafdc2ad
Reviewed-on: https://pdfium-review.googlesource.com/41310
Reviewed-by: Lei Zhang <thestig@chromium.org>
Commit-Queue: Tom Sepez <tsepez@chromium.org>
Diffstat (limited to 'core/fxcodec/codec/ccodec_gifmodule.cpp')
-rw-r--r-- | core/fxcodec/codec/ccodec_gifmodule.cpp | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/core/fxcodec/codec/ccodec_gifmodule.cpp b/core/fxcodec/codec/ccodec_gifmodule.cpp index 7bf216e393..872d90f770 100644 --- a/core/fxcodec/codec/ccodec_gifmodule.cpp +++ b/core/fxcodec/codec/ccodec_gifmodule.cpp @@ -72,9 +72,6 @@ uint32_t CCodec_GifModule::GetAvailInput(Context* pContext, return context->GetAvailInput(avail_buf_ptr); } -void CCodec_GifModule::Input(Context* pContext, - const uint8_t* src_buf, - uint32_t src_size) { - auto* context = static_cast<CFX_GifContext*>(pContext); - context->SetInputBuffer((uint8_t*)src_buf, src_size); +void CCodec_GifModule::Input(Context* pContext, pdfium::span<uint8_t> src_buf) { + static_cast<CFX_GifContext*>(pContext)->SetInputBuffer(src_buf); } |