AVI.h
上传用户:super_houu
上传日期:2008-09-21
资源大小:4099k
文件大小:2k
- /****************************************************************************************
- * Copyright (c) 2003 ZORAN Corporation, All Rights Reserved
- * THIS IS UNPUBLISHED PROPRIETARY SOURCE CODE OF ZORAN CORPORATION
- *
- * File: $Workfile: AVI.h $
- *
- * Description:
- * ============
- * Management of AVI Clips
- *
- * Log:
- * ====
- ****************************************************************************************
- * Updates:
- ****************************************************************************************
- * $Log: /I76/I76_Common/I76_Reference/Playcore/Nav_Clips/AVI.h $
- *
- * 10 3/04/04 10:22p Lotan
- * Second merge with Divx Certification DB,
- * including 2x16 SDram
- *
- * 9 3/01/04 6:29p Lotan
- * merge with Divx certification DB
- *
- * 3 2/19/04 2:30p Eyalr
- * divX Version for Certification
- *
- * 2 2/17/04 1:23p Eyalr
- *
- * 7 2/15/04 11:57p Rond
- * added few audio and subtitle streams
- *
- * 6 12/26/03 13:42 Hamadk
- * Added support for changing the start of the idx processing
- *
- * 5 12/24/03 17:41 Hamadk
- * Added prototype
- *
- * 4 10/22/03 19:02 Hamadk
- * Moved DivX version definition to the decoder
- *
- * 3 10/02/03 10:33 Hamadk
- * Added FF/FB support
- *
- * 2 9/29/03 8:17 Hamadk
- *
- ****************************************************************************************/
- #include "Config.h" // Global Configuration - do not remove!
- #ifndef __AVI_H_
- #define __AVI_H_
- #include "IncludeSysDefs.h"
- #include "PlaycoreFileSysFileSystem.h"
- /////////////////////////////////////////////////////////////////////////////
- // Constants and Enumerations
- #define AVI_HAS_INDEX 0x00000010
- #define AVI_IS_INTERLEAVED 0x00000100
- #define AVI_IS_KEY_FRAME 0x00000010
- /////////////////////////////////////////////////////////////////////////////
- // Common Structures
- /////////////////////////////////////////////////////////////////////////////
- // Public Services
- BOOL AVIClip_isKindOf(LPCWSTR i_pszFilename);
- void AVIClip_construct(struct Clip_TAG *o_pThis, const FindData *i_pFileInfo);
- void AVIClip_continueScanning(void);
- void AVIClip_performErrorHandling(const struct Clip_TAG *i_pThis);
- #endif // __AVI_H_