| Index: core/src/fxcodec/codec/fx_codec_jbig.cpp
|
| diff --git a/core/src/fxcodec/codec/fx_codec_jbig.cpp b/core/src/fxcodec/codec/fx_codec_jbig.cpp
|
| index 9361604b9d7ac036dbdd3cddd938884d8225df81..dec7330fe2f673ce44bb2a68a678c1c4cf342ca9 100644
|
| --- a/core/src/fxcodec/codec/fx_codec_jbig.cpp
|
| +++ b/core/src/fxcodec/codec/fx_codec_jbig.cpp
|
| @@ -55,7 +55,7 @@ FXCODEC_STATUS CCodec_Jbig2Module::StartDecode(void* pJbig2Context,
|
| }
|
| int ret = m_pJbig2Context->m_pContext->getFirstPage(dest_buf, width, height,
|
| dest_pitch, pPause);
|
| - if (m_pJbig2Context->m_pContext->GetProcessiveStatus() ==
|
| + if (m_pJbig2Context->m_pContext->GetProcessingStatus() ==
|
| FXCODEC_STATUS_DECODE_FINISH) {
|
| CJBig2_Context::DestroyContext(m_pJbig2Context->m_pContext);
|
| m_pJbig2Context->m_pContext = NULL;
|
| @@ -69,15 +69,15 @@ FXCODEC_STATUS CCodec_Jbig2Module::StartDecode(void* pJbig2Context,
|
| }
|
| return FXCODEC_STATUS_DECODE_FINISH;
|
| }
|
| - return m_pJbig2Context->m_pContext->GetProcessiveStatus();
|
| + return m_pJbig2Context->m_pContext->GetProcessingStatus();
|
| }
|
| FXCODEC_STATUS CCodec_Jbig2Module::ContinueDecode(void* pJbig2Context,
|
| IFX_Pause* pPause) {
|
| CCodec_Jbig2Context* m_pJbig2Context = (CCodec_Jbig2Context*)pJbig2Context;
|
| int ret = m_pJbig2Context->m_pContext->Continue(pPause);
|
| - if (m_pJbig2Context->m_pContext->GetProcessiveStatus() !=
|
| + if (m_pJbig2Context->m_pContext->GetProcessingStatus() !=
|
| FXCODEC_STATUS_DECODE_FINISH) {
|
| - return m_pJbig2Context->m_pContext->GetProcessiveStatus();
|
| + return m_pJbig2Context->m_pContext->GetProcessingStatus();
|
| }
|
| if (m_pJbig2Context->m_bFileReader) {
|
| CJBig2_Context::DestroyContext(m_pJbig2Context->m_pContext);
|
|
|