GenericClip.h
上传用户:super_houu
上传日期:2008-09-21
资源大小:4099k
文件大小:2k
- /****************************************************************************************
- * Copyright (c) 2002 ZORAN Corporation, All Rights Reserved
- * THIS IS UNPUBLISHED PROPRIETARY SOURCE CODE OF ZORAN CORPORATION
- *
- * File: $Workfile: GenericClip.h $
- *
- * Description:
- * ============
- *
- *
- * Log:
- * ====
- * $Revision: 3 $
- * Last Modified by $Author: Leslie $ at $Modtime: 03-01-09 16:28 $
- ****************************************************************************************
- * Updates:
- ****************************************************************************************
- * $Log: /SourceCode/I64_Common/I64_Reference/Playcore/Nav_Clips/GenericClip.h $
- *
- * 3 03-01-10 12:21 Leslie
- * Add wide-character strings support
- *
- * 2 03-01-09 12:30 Leslie
- *
- * 1 10/30/02 18:05 Rond
- *
- * 1 11/09/02 15:48 Atai
- *
- * 3 13/08/02 13:47 Nirm
- * - Clip_isFinished() replaced by Clip_getStatus().
- *
- * 2 2/08/02 19:47 Nirm
- * - Added Caching capability.
- *
- * 1 30/07/02 18:39 Nirm
- ****************************************************************************************/
- #include "Config.h" // Global Configuration - do not remove!
- #ifndef __GENERIC_CLIP_H_
- #define __GENERIC_CLIP_H_
- #include "IncludeSysDefs.h"
- #include "PlaycoreNav_ClipsClip.h"
- #include "PlaycoreNav_ClipsClip_Impl.h"
- /////////////////////////////////////////////////////////////////////////////
- // Public Services
- BOOL GenericClip_isKindOf(LPCWSTR i_pszFilename, const LPCWSTR *i_aValidExtensions);
- void GenericClip_constructDefault(Clip *i_pThis);
- void GenericClip_construct(Clip *o_pThis, const FindData *i_pFileInfo);
- BOOL GenericClip_getExtendedInfo(const Clip *i_pThis, WORD i_pExtInfo_sc_handle);
- BOOL GenericClip_play(Clip *i_pThis, const ClipMarker *i_pResumeMarker,
- BOOL bCacheOnly);
- void GenericClip_pause(Clip *i_pThis, BOOL bEnable);
- enClipStatus GenericClip_getStatus(const Clip *i_pThis);
- void GenericClip_abort(Clip *i_pThis, BOOL bMaintainStandby);
- void GenericClip_recordMarker(const Clip *i_pThis, ClipMarker *o_pMarker);
- void GenericClip_refresh(Clip *i_pThis);
- UINT16 GenericClip_getTime(const Clip *i_pThis);
- void GenericClip_digest(Clip *i_pThis);
- void GenericClip_scan(Clip *i_pThis, int iScanSpeed);
- #endif //__GENERIC_CLIP_H_