Code/Resource
Windows Develop
Linux-Unix program
Internet-Socket-Network
Web Server
Browser Client
Ftp Server
Ftp Client
Browser Plugins
Proxy Server
Email Server
Email Client
WEB Mail
Firewall-Security
Telnet Server
Telnet Client
ICQ-IM-Chat
Search Engine
Sniffer Package capture
Remote Control
xml-soap-webservice
P2P
WEB(ASP,PHP,...)
TCP/IP Stack
SNMP
Grid Computing
SilverLight
DNS
Cluster Service
Network Security
Communication-Mobile
Game Program
Editor
Multimedia program
Graph program
Compiler program
Compress-Decompress algrithms
Crypt_Decrypt algrithms
Mathimatics-Numerical algorithms
MultiLanguage
Disk/Storage
Java Develop
assembly language
Applications
Other systems
Database system
Embeded-SCM Develop
FlashMX/Flex
source in ebook
Delphi VCL
OS Develop
MiddleWare
MPI
MacOS develop
LabView
ELanguage
Software/Tools
E-Books
Artical/Document
Jpeg.c
Package: tb_i86_wr_1019_1102. [view]
Upload User: super_houu
Upload Date: 2008-09-21
Package Size: 4099k
Code Size: 25k
Category:
DVD
Development Platform:
Others
- /****************************************************************************************
- * Copyright (c) 2000 ZORAN Corporation, All Rights Reserved
- * THIS IS UNPUBLISHED PROPRIETARY SOURCE CODE OF ZORAN CORPORATION
- *
- * File: $Workfile: Jpeg.c $
- *
- * Description:
- * ============
- * JPEG Navigator implementation.
- *
- * Log:
- * ====
- ****************************************************************************************
- * Updates:
- ****************************************************************************************
- * $Log: /I76/I76_Common/I76_Reference/Playcore/Nav_Clips/Jpeg.c $
- *
- ****************************************************************************************/
- #include "Config.h" // Global Configuration - do not remove!
- #ifdef CLIPS_JPEG_SUPPORT
- #ifdef _DEBUG
- #undef IFTRACE
- #define IFTRACE if (gTraceNavigator)
- #include "DebugDbgMain.h"
- #endif
- #include "Includemath-macro.h"
- #include "KernelEventDef.H"
- #include "DecoderDecoder.h"
- #include "Drivedrv_api.h"
- #include "LogoLogo.h"
- #include "PlaycoreCoremainCoreGDef.h"
- #include "PlaycoreExceptionException.h"
- #include "PlaycoreNav_ClipsJPEG.h"
- #include "PlaycoreNav_ClipsClip_Impl.h"
- #include "PlaycoreNav_ClipsGenericClip.h"
- #include "PlaycoreNav_ClipsPE_Clips.h"
- #ifdef SUPPORT_FLASH_CARD
- #include "drivefe_manager.h"
- #endif
- /////////////////////////////////////////////////////////////////////////////
- // Globals and Singletions
- #define CURRENT_DISPLAY_BUFFER (gns.clips.globals.jpegGlobals.eJPEGCurrentDisplayBuffer)
- #define CURRENT_DECODE_BUFFER (gns.clips.globals.jpegGlobals.eJPEGCurrentDecodeBuffer)
- #define IS_CURRENT_DISPLAY_BUFFER_FRONT_R1 (CURRENT_DISPLAY_BUFFER == FRONT_R1_BUFFER )
- #define IS_CURRENT_DISPLAY_BUFFER_BACK_R2 (CURRENT_DISPLAY_BUFFER == BACK_R2_BUFFER )
- #define TOGGLE_CURRENT_DISPLAY_BUFFER (CURRENT_DISPLAY_BUFFER=(CURRENT_DISPLAY_BUFFER==FRONT_R1_BUFFER) ? BACK_R2_BUFFER : FRONT_R1_BUFFER)
- #define TOGGLE_CURRENT_DECODE_BUFFER (CURRENT_DECODE_BUFFER=(CURRENT_DECODE_BUFFER==FRONT_R1_BUFFER) ? BACK_R2_BUFFER : FRONT_R1_BUFFER)
- #define JPEG_PLAYBACK_FINISHED_WATCHDOG 100 // 20 seconds timeout since it's called in 200ms tick, it's necessary for some progressive JPEGs
- #define STOP_WATCHDOG 0xff
- #define bStopRequested (gns.clips.globals.jpegGlobals.bStopRequested)
- static UINT8 g_uPresentationTime= 0;
- static BYTE ucWatchDog = JPEG_PLAYBACK_FINISHED_WATCHDOG;
- #ifdef I77_COMPANION_CHIP
- static BOOL bJpegDecodeDone = FALSE;
- #endif
- #define JPEG_TOLERANCE_BYTES (LOGICAL_BLOCK_SIZE / 2)
- #define JPEG_IMAGESTATE_MASK 0x0F
- #define JPEG_ERROR_MASK 0xF0
- /////////////////////////////////////////////////////////////////////////////
- // Macros
- #define GET_IMAGESTATE(ucUserData)
- (enImageState)((ucUserData) & JPEG_IMAGESTATE_MASK)
- #define SET_IMAGESTATE(ucUserData, eState)
- ucUserData= ((ucUserData) & ~JPEG_IMAGESTATE_MASK) | (UINT8)eState
- #define GET_ERROR(ucUserData)
- (((ucUserData) & JPEG_ERROR_MASK) >> 4)
- #define SET_ERROR(ucUserData, eError)
- ucUserData= ((ucUserData) & ~JPEG_ERROR_MASK) | ((UINT8)eError << 4)
- /////////////////////////////////////////////////////////////////////////////
- // Enumerations
- typedef enum {
- eImageState_Idle,
- eImageState_Caching,
- eImageState_Cached,
- eImageState_Decoding,
- eImageState_Transitioning,
- eImageState_Error
- } enImageState;
- /////////////////////////////////////////////////////////////////////////////
- // Forward Declarations of Virtual Methods
- BOOL JPEGClip_play(Clip *i_pThis, const ClipMarker *i_pResumeMarker, BOOL bCacheOnly);
- void JPEGClip_pause(Clip *i_pThis, BOOL bEnable);
- enClipStatus JPEGClip_getStatus(const Clip *i_pThis);
- void JPEGClip_abort(Clip *i_pThis, BOOL bMaintainStandby);
- void JPEGClip_refresh(Clip *i_pThis);
- UINT16 JPEGClip_getTime(const Clip *i_pThis);
- void JPEGClip_digest(Clip *i_pThis);
- /////////////////////////////////////////////////////////////////////////////
- // Const Factory
- // Valid Extenions List
- BEGIN_CLIP_VALID_EXTENSIONS_MAP(JPEG)
- CLIP_VALID_EXTENSIONS_ENTRY(L"JPEG")
- CLIP_VALID_EXTENSIONS_ENTRY(L"JPG")
- END_CLIP_VALID_EXTENSIONS_MAP()
- // Constant Attributes
- #ifndef D_ENABLE_JPEG_CACHE
- DECLARE_CLIP_CONST_ATTR(JPEG,
- DECLARE_CLIP_VTABLE(GenericClip_getExtendedInfo,
- JPEGClip_play,
- JPEGClip_pause,
- JPEGClip_getStatus,
- JPEGClip_abort,
- GenericClip_recordMarker,
- JPEGClip_refresh,
- JPEGClip_getTime,
- JPEGClip_digest,
- GenericClip_scan
- ),
- eClipType_JPEG,
- DEC_ASID_JPEG, 0xFF, DEC_DISC_TYPE_JPG,
- (eCA_Zoomable | eCA_Digestable | eCA_StillImage ),
- &g_uPresentationTime
- )
- #else
- DECLARE_CLIP_CONST_ATTR(JPEG,
- DECLARE_CLIP_VTABLE(GenericClip_getExtendedInfo,
- JPEGClip_play,
- JPEGClip_pause,
- JPEGClip_getStatus,
- JPEGClip_abort,
- GenericClip_recordMarker,
- JPEGClip_refresh,
- JPEGClip_getTime,
- JPEGClip_digest,
- GenericClip_scan
- ),
- eClipType_JPEG,
- DEC_ASID_JPEG, 0xFF, DEC_DISC_TYPE_JPG,
- (eCA_Zoomable | eCA_Digestable | eCA_StillImage | eCA_Cacheable ),
- &g_uPresentationTime
- )
- #endif
- /////////////////////////////////////////////////////////////////////////////
- // Public Services
- void JPEG_setPresentationTime(UINT8 uPresentationTime)
- {
- dbg_printf(("Set JPEG presentation time to %dn", uPresentationTime));
- g_uPresentationTime = uPresentationTime;
- }
- BOOL JPEGClip_isKindOf(LPCWSTR i_pszFilename)
- {
- return GenericClip_isKindOf(i_pszFilename, CLIP_VALID_EXTENSIONS(JPEG));
- }
- void JPEGClip_construct(struct Clip_TAG *o_pThis, const FindData *i_pFileInfo)
- {
- GenericClip_construct(o_pThis, i_pFileInfo);
- o_pThis->m_pConstAttr= &CLIP_CONST_ATTR(JPEG);
- }
- /////////////////////////////////////////////////////////////////////////////
- // Virtual Methods
- #pragma argsused
- BOOL JPEGClip_play(Clip *i_pThis, const ClipMarker *i_pResumeMarker,
- BOOL bCacheOnly)
- {
- BOOL bNoTransition;
- BOOL bBtsChanged;
- ULONG ulBlocksCnt;
- ULONG cbFileSize;
- enImageState eState;
- ucWatchDog = JPEG_PLAYBACK_FINISHED_WATCHDOG;
- dbg_printf(("JPEGClip_play(bCacheOnly=%x)n",bCacheOnly));
- bBtsChanged= (DEC_GetCurrentDiscType() != (DEC_DISC_TYPE)(i_pThis->m_pConstAttr)->m_eBitstreamType);
- bNoTransition= (eCTE_None == (enClipTransitionEffect)(i_pThis->m_presentationInfo).eTransitionEffect);
- #ifdef USE_STOP_EXCEPTION_WHEN_JPEG
- Exception_catch(EXCEPTION_STOP_REQUEST);
- #endif
- /* Sanity check - Is caching required while disc type has changed? */
- if (bCacheOnly && bBtsChanged)
- {
- return FALSE;
- }
- /* If transition effect is used - no caching is performed (no double buffering)! */
- if (bCacheOnly && !bNoTransition)
- {
- tr_printf(("Transition effect is required - disable cachingn"));
- return FALSE;
- }
- // Acquire the current image State
- eState= GET_IMAGESTATE((i_pThis->m_presentationInfo).ucUserData);
- // Check if the image is already in Error state;
- // This is only possible if this image was cached unsuccessfully.
- if (eImageState_Error == eState)
- {
- // If this is a Caching request, do nothing
- if (bCacheOnly)
- return TRUE;
- // Clear the Front-Display Buffer and do nothing additional
- DEC_JPEG_clearDisplayBuffers(TRUE, FALSE, TRUE);
- return TRUE;
- }
- // display the picture if the image is already cached and in normal playback
- if( (!bCacheOnly)&&(eImageState_Cached == eState) )
- {
- tr_printf(("nJPEGClip_play: Display cached Imagen"));
- // If picutre already cached, switch to display it in decode buffer
- TOGGLE_CURRENT_DISPLAY_BUFFER;
- TOGGLE_CURRENT_DECODE_BUFFER;
- // clear previous display buffer to push DVP Video Task toggle the display buffer
- DEC_JPEG_clearDisplayBuffers(IS_CURRENT_DISPLAY_BUFFER_BACK_R2,
- IS_CURRENT_DISPLAY_BUFFER_FRONT_R1, bBtsChanged );
- DEC_JPEG_SetDisplayDecodeBuffer(CURRENT_DISPLAY_BUFFER,CURRENT_DECODE_BUFFER);
- if (!DEC_IsSystemIdle())
- {
- DEC_Stop_DVP_cmd((UINT8)0);
- delay_us(400000UL);
- }
- DEC_Start_DVP_cmd();
- delay_us(50000UL);//wait until picture is displayed
- TOGGLE_CURRENT_DECODE_BUFFER;
- // If this image is already Caching/Cached, then move to "Decoding" state;
- // the next Refresh will resume normal flow.
- SET_IMAGESTATE((i_pThis->m_presentationInfo).ucUserData, eImageState_Decoding);
- // Indicate that the data has been modified
- (i_pThis->m_presentationInfo).bModified= TRUE;
- return TRUE;
- }
- drv_abort_play();
- // Set the selected Orientation
- DEC_JPEG_setOrientation((UINT8)(i_pThis->m_presentationInfo).eImageOrientation);
- // Use no Transition-Effect for the Caching/Decoding phase
- DEC_JPEG_selectTransition((UINT8)eCTE_None, FALSE);
- // Set the Image State to "Caching" or "Decoding", as appropriate
- if (bCacheOnly)
- {
- dbg_printf(("JPEG_Play: Cache Imagen"));
- SET_IMAGESTATE((i_pThis->m_presentationInfo).ucUserData, eImageState_Caching);
- }
- else
- {
- dbg_printf(("JPEG_Play: Direct Play Imagen"));
- SET_IMAGESTATE((i_pThis->m_presentationInfo).ucUserData, eImageState_Decoding);
- #ifdef EXINO2 // ZKR GL040904 : Demo for Transition effect to S1
- DEC_JPEG_selectTransition((UINT8)eCTE_Random,TRUE);
- #else
- DEC_JPEG_selectTransition((enClipTransitionEffect)(i_pThis->m_presentationInfo).eTransitionEffect,TRUE);
- #endif
- }
- // Configure the Decoder to the appropriate Bitstream Type
- DEC_SetDiskType((DEC_DISC_TYPE)(i_pThis->m_pConstAttr)->m_eBitstreamType);
- DEC_EnableManualScaling(PROG_SCALER_MODE_CCRAM);
- //Set JPEG size
- DEC_set_coded_video_size((UINT16) JPEG_DISPLAY_HORZ_SIZE, (UINT16) JPEG_DISPLAY_VERT_SIZE);
- //caculate display SAR
- DEC_set_Display_AspectRatio(gps->tv_shape);
- //JPEG coded SAR is always 1000 to keep no distortion
- DEC_LL_SetCodedSAR(1000);
- // Set the scaler mode
- DEC_SetViewMode(gps->view_mode);
- #ifdef D_ENABLE_SETUP_JPG_SIZE //JG_0803_2004
- //JPEG auto fit should do scaling later when get real pic size from ADP
- if(JPG_SIZE_AUTOFIT != PS_GET_JPEG_SIZE_SETTING())
- #endif
- gcst.mNeedScaling = TRUE;
- // Apply Auto-Fit, if required
- if (JPG_SIZE_AUTOFIT == PS_GET_JPEG_SIZE_SETTING())
- {
- DEC_JPEG_enableAutoFitToScreen(TRUE);
- }
- else
- {
- DEC_JPEG_enableAutoFitToScreen(FALSE);
- }
- // Prepare for decoding
- DEC_prepare_to_decode();
- // Clear the Display Buffers
- if (!bCacheOnly)
- {
- // no caching required, clear immediately if the bitstream type changed
- dbg_printf(("ndefault display/decode buffer as R2 when no cache playn"));
- CURRENT_DISPLAY_BUFFER = BACK_R2_BUFFER;
- CURRENT_DECODE_BUFFER = BACK_R2_BUFFER;
- DEC_JPEG_clearDisplayBuffers(IS_CURRENT_DISPLAY_BUFFER_FRONT_R1,
- IS_CURRENT_DISPLAY_BUFFER_BACK_R2, bBtsChanged);
- DEC_JPEG_SetDisplayDecodeBuffer(CURRENT_DISPLAY_BUFFER,CURRENT_DECODE_BUFFER);
- }
- else
- {
- #ifdef D_ENABLE_JPEG_CACHE
- // Caching is required: clear only the Back Buffer
- DEC_JPEG_clearDisplayBuffers( IS_CURRENT_DISPLAY_BUFFER_BACK_R2,
- IS_CURRENT_DISPLAY_BUFFER_FRONT_R1, FALSE);
- // Continue display at current display buffer, while decoding the cached image into decoding buffer
- TOGGLE_CURRENT_DECODE_BUFFER;
- DEC_JPEG_SetDisplayDecodeBuffer(CURRENT_DISPLAY_BUFFER,CURRENT_DECODE_BUFFER);
- #endif
- }
- // Adjust the Zoom factor
- if (bNoTransition)
- {
- #ifdef CLIPS_JPEG_KEEP_ZOOM_RATIO
- if (JPG_SIZE_ORIGINAL == PS_GET_JPEG_SIZE_SETTING())
- DEC_SetZoomScale(gcs.mZoomLevel);
- else
- #endif
- //JG_0407_2004:No need to kill zoom, using CPU scaling will not keep zoom ratio
- // Kill any existing Zoom
- //DEC_SetZoomScale(NO_ZOOM);
- }
- // Switch the Logo-Source to Frame
- if (!bCacheOnly && (eFrame != Logo_getCurrentSource()))
- {
- Logo_selectSource(eFrame);
- Logo_display();
- }
- DEC_JPEG_ResetCopyDoneFlag();
- #ifdef I77_COMPANION_CHIP//jerry.ren 20050527
- #ifdef I77_BRAIN_STORM
- if( gcst.hd_jpeg_mode_preference != SD_JPEG_MODE )
- #else//I77_BRAIN_STORM
- if( gps->hd_jpeg_mode_preference != SD_JPEG_MODE )
- #endif//I77_BRAIN_STORM
- I77_SetBackground(TRUE);
- #endif
- Logo_selectSource(eBackground);
- Logo_display();
- //set HD JPEG resolution or SD JPEG display size
- DEC_JPEG_Init_Resolution();
- //set file size
- #ifdef SUPPORT_FLASH_CARD
- if(IS_PLAYING_CARD)
- DEC_JPEG_SetFileSize( i_pThis->m_cfiInfo.cbFileSize + LOGICAL_BLOCK_SIZE - 1);
- else
- #endif
- DEC_JPEG_SetFileSize( i_pThis->m_cfiInfo.cbFileSize );
- DEC_SetSID(DEC_SID_TYPE_AUDIO, (i_pThis->m_pConstAttr)->m_eAudioSID);
- DEC_SetSID(DEC_SID_TYPE_VIDEO, (i_pThis->m_pConstAttr)->m_eVideoSID);
- // Select the appropriate Clock
- PE_Clips_SelectClock(eCT_Decoder);
- // Calculate the Playback Length, and add an extra Sector to accomodate for decoding tolerance in JPEG.
- ulBlocksCnt= ( ((i_pThis->m_cfiInfo).cbFileSize + LOGICAL_BLOCK_SIZE - 1) /LOGICAL_BLOCK_SIZE );
- // Calculate the effective File-Size to transfer, taking into account the JPEG Tolerance, required by the Decoder.
- cbFileSize= MIN((ulBlocksCnt * LOGICAL_BLOCK_SIZE), ((i_pThis->m_cfiInfo).cbFileSize + JPEG_TOLERANCE_BYTES));
- // Inform the Decoder of the Playback-Range
- PE_Clips_SetPlaybackRange((i_pThis->m_cfiInfo).dwFileLocation, ulBlocksCnt, cbFileSize);//Leslie_0823_2003_A
- // Invoke playback of the Decoder & Drive
- // NOTE: The order of invocation is important, and must not be changed!
- DEC_PlaybackCommand(DEC_PLAYBACK_CMD_PLAY, NULL);
- Logo_selectSource(eFrame);
- //Freya Disable the next line to fix TD1609"Press Next key the picture flash once" at 050816
- //Logo_display();
- #ifdef I77_COMPANION_CHIP//jerry.ren 20050527
- #ifdef I77_BRAIN_STORM
- if( gcst.hd_jpeg_mode_preference != SD_JPEG_MODE )
- #else//I77_BRAIN_STORM
- if( gps->hd_jpeg_mode_preference != SD_JPEG_MODE )
- #endif//I77_BRAIN_STORM
- I77_SetBackground(FALSE);
- #endif
- if ( !PE_Clips_Playback_Sectors(DRVCF_CDSPEED_1X | DRVF_PLAY_CD_AV_DATA, (i_pThis->m_cfiInfo).dwFileLocation,//Leslie_0823_2003_A
- ulBlocksCnt))
- {
- dbg_printf(("WARNING: GenericClip_play() Failed [1]n"));
- return FALSE;
- }
- // Reset the Clock, without starting it
- PE_Clips_EnableClock(FALSE, TRUE, 0);
- // Indicate that the data has been modified
- (i_pThis->m_presentationInfo).bModified= TRUE;
- return TRUE;
- }
- #pragma argsused
- void JPEGClip_pause(Clip *i_pThis, BOOL bEnable)
- {
- // Nothing special to do for JPEG - just let the picture decode to
- // its end.
- dbg_printf(("JPEGClip_pause()n"));
- return;
- }
- #pragma argsused
- enClipStatus JPEGClip_getStatus(const Clip *i_pThis)
- {
- enImageState eState= GET_IMAGESTATE((i_pThis->m_presentationInfo).ucUserData);
- /* Check if an exception was thrown */
- #ifdef USE_STOP_EXCEPTION_WHEN_JPEG
- if (Exception_catchAndRethrow(EXCEPTION_STOP_REQUEST | EXCEPTION_MEDIUM_EJECTED | EXCEPTION_POWER_DOWN_REQUEST))
- #else
- if (Exception_catchAndRethrow(EXCEPTION_MEDIUM_EJECTED | EXCEPTION_POWER_DOWN_REQUEST))
- #endif
- {
- #ifdef I77_COMPANION_CHIP
- bJpegDecodeDone = FALSE;
- #endif
- return eCS_Busy;
- }
- if ((eImageState_Idle == eState) || (eImageState_Cached == eState))
- {
- #ifdef I77_COMPANION_CHIP
- #ifdef I77_BRAIN_STORM
- if( gcst.hd_jpeg_mode_preference != SD_JPEG_MODE )
- #else//I77_BRAIN_STORM
- if( gps->hd_jpeg_mode_preference != SD_JPEG_MODE )
- #endif//I77_BRAIN_STORM
- {
- bJpegDecodeDone = TRUE;
- return eCS_Finished;
- }
- else
- #endif
- {
- if ( DEC_JPEG_IsCopyDone() )
- return eCS_Finished;
- else
- return eCS_Busy;
- }
- }
- if (eImageState_Error == eState) {
- switch (GET_ERROR((i_pThis->m_presentationInfo).ucUserData))
- {
- case JPEG_STAT_ERR_FATAL:
- return eCS_Error_Decoding;
- case JPEG_STAT_ERR_UNSUPPORTED:
- return eCS_Error_UnsupportedFormat;
- }
- }
- if(!ucWatchDog)
- {
- ucWatchDog = JPEG_PLAYBACK_FINISHED_WATCHDOG;
- tr_printf(("Warnning: JPEG Watchdog time out!!!n"));
- return eCS_Finished;
- }
- else
- if(STOP_WATCHDOG != ucWatchDog)
- ucWatchDog --;
- return eCS_Busy;
- }
- #pragma argsused
- void JPEGClip_abort(Clip *i_pThis, BOOL bMaintainStandby)
- {
- dbg_printf(("JPEGClip_abort(%d)n", bMaintainStandby));
- #ifdef USE_STOP_EXCEPTION_WHEN_JPEG
- /* Clear stop exception if it was thrown */
- Exception_catch(EXCEPTION_STOP_REQUEST);
- #endif
- DEC_JPEG_selectTransition((UINT8)eCTE_None, TRUE);
- // if (eImageState_Idle != GET_IMAGESTATE((i_pThis->m_presentationInfo).ucUserData)) {
- drv_abort_play();
- DEC_Stop_DVP_ADP_cmd((UINT8)0);
- // }
- if (! bMaintainStandby)
- drv_spindown();
- SET_IMAGESTATE((i_pThis->m_presentationInfo).ucUserData, eImageState_Idle);
- (i_pThis->m_presentationInfo).bModified= TRUE;
- #ifdef I77_COMPANION_CHIP
- if ( ( bJpegDecodeDone == FALSE ) && (PST_STOP != gcs.pstate) )
- {
- #ifdef I77_BRAIN_STORM
- if( gcst.hd_jpeg_mode_preference != SD_JPEG_MODE )
- #else//I77_BRAIN_STORM
- if( gps->hd_jpeg_mode_preference != SD_JPEG_MODE )
- #endif//I77_BRAIN_STORM
- DEC_JPEG_End_Resolution();
- }
- #endif
- return;
- }
- #ifdef I77_COMPANION_CHIP
- void JPEGClip_BeforeAbort(void)
- {
- bJpegDecodeDone = FALSE;
- }
- #endif // I77_COMPANION_CHIP
- void JPEGClip_beforeStop(struct Clip_TAG *o_pThis)
- {
- bStopRequested = TRUE;
- }
- #pragma argsused
- void JPEGClip_refresh(Clip *i_pThis)
- {
- UINT8 uDecodingStatus;
- enImageState eOriginalState;
- /* Check if an exception was thrown */
- #ifdef USE_STOP_EXCEPTION_WHEN_JPEG
- if (Exception_catchAndRethrow(EXCEPTION_STOP_REQUEST | EXCEPTION_MEDIUM_EJECTED | EXCEPTION_POWER_DOWN_REQUEST))
- #else
- if (Exception_catchAndRethrow(EXCEPTION_MEDIUM_EJECTED | EXCEPTION_POWER_DOWN_REQUEST))
- #endif
- {
- #ifdef I77_COMPANION_CHIP
- bJpegDecodeDone = FALSE;
- #endif // I77_COMPANION_CHIP
- return;
- }
- eOriginalState= GET_IMAGESTATE((i_pThis->m_presentationInfo).ucUserData);
- // Check if there is anything to refresh
- if ((eImageState_Cached == eOriginalState) || (eImageState_Idle == eOriginalState) ||
- (eImageState_Error == eOriginalState))
- {
- // If the Image is already Cached, Idle, or Erroneous, no point in doing anything.
- return;
- }
- #ifdef I77_COMPANION_CHIP
- #ifdef I77_BRAIN_STORM
- if( gcst.hd_jpeg_mode_preference == SD_JPEG_MODE )
- #else//I77_BRAIN_STORM
- if( gps->hd_jpeg_mode_preference == SD_JPEG_MODE )
- #endif//I77_BRAIN_STORM
- #endif
- {
- // notify to copy the new line to display buffer when ready
- if ( ( TRUE == DEC_JPEG_IsNewLineReady() ) && ( PST_STOP != gcs.pstate ) )
- DEC_JPEG_DecodeDoneCheck();
- }
- // Check if the current Phase has finished
- uDecodingStatus= DEC_JPEG_getStatus();
- #ifdef I77_COMPANION_CHIP//jerry.ren 20050527
- #ifdef I77_BRAIN_STORM
- if( gcst.hd_jpeg_mode_preference != SD_JPEG_MODE )
- #else//I77_BRAIN_STORM
- if( gps->hd_jpeg_mode_preference != SD_JPEG_MODE )
- #endif//I77_BRAIN_STORM
- I77_SetBackground(TRUE);
- #endif
- if (JPEG_STAT_DECODING == uDecodingStatus)
- {
- //no return if JPEG copy done even it still decoding (for SD JPEG mode only)
- if(!(DEC_JPEG_IsCopyDone()
- #ifdef I77_COMPANION_CHIP
- #ifdef I77_BRAIN_STORM
- &&(gcst.hd_jpeg_mode_preference == SD_JPEG_MODE)
- #else//I77_BRAIN_STORM
- &&(gps->hd_jpeg_mode_preference == SD_JPEG_MODE)
- #endif//I77_BRAIN_STORM
- #endif
- ) )
- return;
- }
- #ifdef I77_COMPANION_CHIP//jerry.ren 20050527
- #ifdef I77_BRAIN_STORM
- if( gcst.hd_jpeg_mode_preference != SD_JPEG_MODE )
- #else//I77_BRAIN_STORM
- if( gps->hd_jpeg_mode_preference != SD_JPEG_MODE )
- #endif//I77_BRAIN_STORM
- I77_SetBackground(FALSE);
- #endif
- // Check for Errors
- if ((JPEG_STAT_ERR_UNSUPPORTED == uDecodingStatus) ||
- (JPEG_STAT_ERR_FATAL == uDecodingStatus))
- {
- dbg_printf(("Error, unsupported format or error encountedn"));
- // If the current state is "Decoding",
- if (eImageState_Decoding == eOriginalState){
- DEC_JPEG_clearDisplayBuffers(IS_CURRENT_DISPLAY_BUFFER_BACK_R2, IS_CURRENT_DISPLAY_BUFFER_FRONT_R1, TRUE);
- }
- // Move to "Error" state
- SET_IMAGESTATE((i_pThis->m_presentationInfo).ucUserData, eImageState_Error);
- SET_ERROR((i_pThis->m_presentationInfo).ucUserData, uDecodingStatus);
- (i_pThis->m_presentationInfo).bModified= TRUE;
- return;
- }
- // Check the current State
- if (eImageState_Caching == eOriginalState) {
- // Caching is finished -- move to "Cached" state
- SET_IMAGESTATE((i_pThis->m_presentationInfo).ucUserData, eImageState_Cached);
- }
- else if (eImageState_Decoding == eOriginalState) {
- // Check if a Transition-Phase is required
- if (eCTE_None == (enClipTransitionEffect)(i_pThis->m_presentationInfo).eTransitionEffect) {
- // No Transition required: move to "Idle" state
- SET_IMAGESTATE((i_pThis->m_presentationInfo).ucUserData, eImageState_Idle);
- }
- else {
- // Some Transition is required: select and apply the Transition
- enClipTransitionEffect eTransition;
- /* //no used now, will do it at dec_jpeg_selecttransition()
- if (eCTE_Random == (enClipTransitionEffect)(i_pThis->m_presentationInfo).eTransitionEffect)
- eTransition= (eCTE_TopToBottom + (rand() % (eCTE_TransitionEffectsCnt-1)));
- else*/
- eTransition= (enClipTransitionEffect)(i_pThis->m_presentationInfo).eTransitionEffect;
- // If no Auto-Fit was applied, cancel any Zoom
- #ifdef CLIPS_JPEG_KEEP_ZOOM_RATIO //DM021103 Keep Zoom level as required
- if (JPG_SIZE_ORIGINAL == PS_GET_JPEG_SIZE_SETTING())
- DEC_SetZoomScale(gcs.mZoomLevel);
- else
- #else
- if (JPG_SIZE_ORIGINAL == PS_GET_JPEG_SIZE_SETTING())
- #endif
- DEC_SetZoomScale(NO_ZOOM);
- DEC_JPEG_selectTransition((UINT8)eTransition, TRUE);
- // Move to "Transitioning" state
- SET_IMAGESTATE((i_pThis->m_presentationInfo).ucUserData, eImageState_Transitioning);
- }
- }
- else if (eImageState_Transitioning == eOriginalState) {
- // Since the Transition-Effect has finished, move to "Idle" state
- SET_IMAGESTATE((i_pThis->m_presentationInfo).ucUserData, eImageState_Idle);
- }
- // Check if there was some modification, and indicate that
- if (eOriginalState != GET_IMAGESTATE((i_pThis->m_presentationInfo).ucUserData))
- (i_pThis->m_presentationInfo).bModified= TRUE;
- }
- #pragma argsused
- UINT16 JPEGClip_getTime(const Clip *i_pThis)
- {
- // No Time dimension in a JPEG image - always return Zero
- return 0;
- }
- void JPEGClip_digest(Clip *i_pThis)
- {
- ULONG ulBlocksCnt;
- ULONG cbFileSize;
- ucWatchDog = STOP_WATCHDOG;
- dbg_printf(("JPEGClip_digest()n"));
- // Set the Image State to "Decoding"
- SET_IMAGESTATE((i_pThis->m_presentationInfo).ucUserData, eImageState_Decoding);
- // Set the selected Orientation
- #ifdef EXINO2
- DEC_JPEG_setOrientation((UINT8)(i_pThis->m_presentationInfo).eImageOrientation);
- #else
- DEC_JPEG_setOrientation(eCIO_Original);
- #endif
- // Use no Transition-Effect for the Caching/Decoding phase
- DEC_JPEG_selectTransition((UINT8)eCTE_None, FALSE);
- // Configure the Decoder to the appropriate Bitstream Type
- DEC_SetDiskType((DEC_DISC_TYPE)(i_pThis->m_pConstAttr)->m_eBitstreamType);
- //no auto fit for digest
- DEC_JPEG_enableAutoFitToScreen(FALSE);
- // Prepare for decoding
- DEC_prepare_to_decode();
- #ifndef D_ENABLE_JPEG_CACHE
- // tempory patch, current MPEG DVP Ucode is not able the clear background if no JPEG data is sent to DVP
- // need to figure it out later
- if ( IS_DVD_MEDIA ){
- if ( Digest_IsFirstDigestWindow())
- DEC_JPEG_clearDisplayBuffers(FALSE, TRUE, FALSE);
- else
- DEC_JPEG_clearDisplayBuffers(FALSE, FALSE, FALSE);
- }
- else
- #ifdef SUPPORT_FLASH_CARD
- if(!IS_PLAYING_CARD)
- #endif
- {
- DEC_JPEG_clearDisplayBuffers(TRUE, FALSE, FALSE);
- }
- #else
- dbg_printf(("ndefault display/decode buffer as R2 when digestn"));
- CURRENT_DISPLAY_BUFFER = BACK_R2_BUFFER;
- CURRENT_DECODE_BUFFER = BACK_R2_BUFFER;
- if ( Digest_IsFirstDigestWindow())
- DEC_JPEG_clearDisplayBuffers(IS_CURRENT_DISPLAY_BUFFER_FRONT_R1,IS_CURRENT_DISPLAY_BUFFER_BACK_R2, FALSE);
- else
- DEC_JPEG_clearDisplayBuffers(FALSE, FALSE, FALSE);
- #endif //D_ENABLE_JPEG_CACHE
- DEC_JPEG_SetDisplayDecodeBuffer(CURRENT_DISPLAY_BUFFER,CURRENT_DECODE_BUFFER);
- //clear the copy done Flag, it shoul be clear before next picture decoding
- DEC_JPEG_ResetCopyDoneFlag();
- //set HD JPEG resolution or SD JPEG display size
- DEC_JPEG_Init_Resolution();
- //set file size
- DEC_JPEG_SetFileSize( i_pThis->m_cfiInfo.cbFileSize );
- DEC_SetSID(DEC_SID_TYPE_AUDIO, (i_pThis->m_pConstAttr)->m_eAudioSID);
- DEC_SetSID(DEC_SID_TYPE_VIDEO, (i_pThis->m_pConstAttr)->m_eVideoSID);
- // Calculate the Playback Length, and add an extra Sector to accomodate for decoding tolerance in JPEG.
- ulBlocksCnt= ( ((i_pThis->m_cfiInfo).cbFileSize + LOGICAL_BLOCK_SIZE - 1) /LOGICAL_BLOCK_SIZE );
- // Calculate the effective File-Size to transfer, taking into account the JPEG Tolerance, required by the Decoder.
- cbFileSize= MIN((ulBlocksCnt * LOGICAL_BLOCK_SIZE), ((i_pThis->m_cfiInfo).cbFileSize + JPEG_TOLERANCE_BYTES));
- // Inform the Decoder of the Playback-Range
- PE_Clips_SetPlaybackRange((i_pThis->m_cfiInfo).dwFileLocation, ulBlocksCnt, cbFileSize);//Leslie_0823_2003_A
- // Invoke playback of the Decoder & Drive
- // NOTE: The order of invocation is important, and must not be changed!
- DEC_PlaybackCommand(DEC_PLAYBACK_CMD_PLAY, NULL);
- if ( !PE_Clips_Playback_Sectors(DRVCF_CDSPEED_1X | DRVF_PLAY_CD_AV_DATA, (i_pThis->m_cfiInfo).dwFileLocation,//Leslie_0823_2003_A
- ulBlocksCnt))
- {
- dbg_printf(("WARNING: JPEGClip_digest() Failed [1]n"));
- return;
- }
- // Indicate that the data has been modified
- (i_pThis->m_presentationInfo).bModified= TRUE;
- return;
- }
- #endif //CLIPS_JPEG_SUPPORT