summaryrefslogtreecommitdiff
path: root/core/fxcodec/codec/ccodec_gifmodule.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'core/fxcodec/codec/ccodec_gifmodule.cpp')
-rw-r--r--core/fxcodec/codec/ccodec_gifmodule.cpp10
1 files changed, 0 insertions, 10 deletions
diff --git a/core/fxcodec/codec/ccodec_gifmodule.cpp b/core/fxcodec/codec/ccodec_gifmodule.cpp
index d6ab10d9c9..dc2c0c83a4 100644
--- a/core/fxcodec/codec/ccodec_gifmodule.cpp
+++ b/core/fxcodec/codec/ccodec_gifmodule.cpp
@@ -63,16 +63,6 @@ CFX_GifDecodeStatus CCodec_GifModule::LoadFrame(Context* pContext,
pAttribute->m_nGifLeft = context->images_[frame_num]->image_info.left;
pAttribute->m_nGifTop = context->images_[frame_num]->image_info.top;
pAttribute->m_fAspectRatio = context->pixel_aspect_;
- const uint8_t* buf =
- reinterpret_cast<const uint8_t*>(context->cmt_data_.GetBuffer(0));
- uint32_t len = context->cmt_data_.GetLength();
- if (len > 21) {
- uint8_t size = *buf++;
- if (size != 0)
- pAttribute->m_strAuthor = ByteString(buf, size);
- else
- pAttribute->m_strAuthor.clear();
- }
return CFX_GifDecodeStatus::Success;
}