diff options
Diffstat (limited to 'core/fxcodec/codec/ccodec_progressivedecoder.h')
-rw-r--r-- | core/fxcodec/codec/ccodec_progressivedecoder.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/core/fxcodec/codec/ccodec_progressivedecoder.h b/core/fxcodec/codec/ccodec_progressivedecoder.h index 1f72d9f044..87bf18411d 100644 --- a/core/fxcodec/codec/ccodec_progressivedecoder.h +++ b/core/fxcodec/codec/ccodec_progressivedecoder.h @@ -184,7 +184,7 @@ class CCodec_ProgressiveDecoder : bool BmpReadMoreData(CCodec_BmpModule* pBmpModule, CCodec_BmpModule::Context* pBmpContext, FXCODEC_STATUS& err_status); - bool BmpDetectImageType(CFX_DIBAttribute* pAttribute, uint32_t size); + bool BmpDetectImageTypeInBuffer(CFX_DIBAttribute* pAttribute); FXCODEC_STATUS BmpStartDecode(const RetainPtr<CFX_DIBitmap>& pDIBitmap); FXCODEC_STATUS BmpContinueDecode(); #endif // PDF_ENABLE_XFA_BMP @@ -192,7 +192,7 @@ class CCodec_ProgressiveDecoder : #ifdef PDF_ENABLE_XFA_GIF bool GifReadMoreData(CCodec_GifModule* pGifModule, FXCODEC_STATUS& err_status); - bool GifDetectImageType(CFX_DIBAttribute* pAttribute, uint32_t size); + bool GifDetectImageTypeInBuffer(CFX_DIBAttribute* pAttribute); FXCODEC_STATUS GifStartDecode(const RetainPtr<CFX_DIBitmap>& pDIBitmap); FXCODEC_STATUS GifContinueDecode(); void GifDoubleLineResampleVert(const RetainPtr<CFX_DIBitmap>& pDeviceBitmap, @@ -202,7 +202,7 @@ class CCodec_ProgressiveDecoder : bool JpegReadMoreData(CCodec_JpegModule* pJpegModule, FXCODEC_STATUS& err_status); - bool JpegDetectImageType(CFX_DIBAttribute* pAttribute, uint32_t size); + bool JpegDetectImageTypeInBuffer(CFX_DIBAttribute* pAttribute); FXCODEC_STATUS JpegStartDecode(const RetainPtr<CFX_DIBitmap>& pDIBitmap); FXCODEC_STATUS JpegContinueDecode(); @@ -211,13 +211,13 @@ class CCodec_ProgressiveDecoder : int32_t dest_line, uint8_t* src_scan, FXCodec_Format src_format); - bool PngDetectImageType(CFX_DIBAttribute* pAttribute, uint32_t size); + bool PngDetectImageTypeInBuffer(CFX_DIBAttribute* pAttribute); FXCODEC_STATUS PngStartDecode(const RetainPtr<CFX_DIBitmap>& pDIBitmap); FXCODEC_STATUS PngContinueDecode(); #endif // PDF_ENABLE_XFA_PNG #ifdef PDF_ENABLE_XFA_TIFF - bool TiffDetectImageType(CFX_DIBAttribute* pAttribute, uint32_t size); + bool TiffDetectImageTypeFromFile(CFX_DIBAttribute* pAttribute); FXCODEC_STATUS TiffContinueDecode(); #endif // PDF_ENABLE_XFA_TIFF |